예제 #1
0
static void my_cbor_print(const cbor_stream_t *stream)
{
#ifndef CBOR_NO_PRINT
    cbor_stream_print(stream);
#else
    (void)stream;
    printf("<no print support>");
#endif
}
예제 #2
0
파일: tests-cbor.c 프로젝트: ryankurte/RIOT
static void my_cbor_print(const cbor_stream_t *stream)
{
    cbor_stream_print(stream);
}