/
githubmirror
/
libcbor
Обзор
Документация
Войти
/
githubmirror
/
libcbor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/hello.c
15 строк
461 B
Pavel Kalvoda
Deprecate CBOR_CUSTOM_ALLOC
27 дек 2022, 01:52
Не верифицирован
27 дек 2022, 01:52
c03d88e
Код
Авторство
О чём код?
/* * Copyright (c) 2014-2020 Pavel Kalvoda <me@pavelkalvoda.com> * * libcbor is free software; you can redistribute it and/or modify * it under the terms of the MIT license. See LICENSE for details. */ #include <stdio.h> #include "cbor.h" int main(void) { printf("Hello from libcbor %s\n", CBOR_VERSION); printf("Pretty-printer support: %s\n", CBOR_PRETTY_PRINTER ? "yes" : "no"); printf("Buffer growth factor: %f\n", (float)CBOR_BUFFER_GROWTH); }