/
githubmirror
/
libcbor
Обзор
Документация
Войти
/
githubmirror
/
libcbor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.5.0
examples/hello.c
17 строк
556 B
PJK
Happy new year!
01 янв 2017, 21:01
01 янв 2017, 21:01
1e80f4a
Код
Авторство
О чём код?
/* * Copyright (c) 2014-2017 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 "cbor.h" #include <stdio.h> int main(int argc, char * argv[]) { printf("Hello from libcbor %s\n", CBOR_VERSION); printf("Custom allocation support: %s\n", CBOR_CUSTOM_ALLOC ? "yes" : "no"); printf("Pretty-printer support: %s\n", CBOR_PRETTY_PRINTER ? "yes" : "no"); printf("Buffer growth factor: %f\n", (float) CBOR_BUFFER_GROWTH); }