47 lines
1.1 KiB
C
47 lines
1.1 KiB
C
|
/*==============================================================================
|
||
|
cmd_line_mainc.c -- Runs tests for QCBOR encoder / decoder
|
||
|
|
||
|
Copyright (c) 2018-2020, Laurence Lundblade. All rights reserved.
|
||
|
|
||
|
SPDX-License-Identifier: BSD-3-Clause
|
||
|
|
||
|
See BSD-3-Clause license in README.md
|
||
|
|
||
|
Created on 9/13/18
|
||
|
=============================================================================*/
|
||
|
|
||
|
#include <stdio.h>
|
||
|
#include "run_tests.h"
|
||
|
#include "example.h"
|
||
|
#include "ub-example.h"
|
||
|
|
||
|
|
||
|
/*
|
||
|
This is an implementation of OutputStringCB built using stdio. If
|
||
|
you don't have stdio, replaces this.
|
||
|
*/
|
||
|
static void fputs_wrapper(const char *szString, void *pOutCtx, int bNewLine)
|
||
|
{
|
||
|
fputs(szString, (FILE *)pOutCtx);
|
||
|
if(bNewLine) {
|
||
|
fputs("\n", pOutCtx);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
int main(int argc, const char * argv[])
|
||
|
{
|
||
|
(void)argc; // Avoid unused parameter error
|
||
|
|
||
|
RunQCborExample();
|
||
|
RunUsefulBufExample();
|
||
|
|
||
|
|
||
|
// This call prints out sizes of data structures to remind us
|
||
|
// to keep them small.
|
||
|
PrintSizesQCBOR(&fputs_wrapper, stdout);
|
||
|
|
||
|
// This runs all the tests
|
||
|
return RunTestsQCBOR(argv+1, &fputs_wrapper, stdout, NULL);
|
||
|
}
|