/
githubmirror
/
libcbor
Обзор
Документация
Войти
/
githubmirror
/
libcbor
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.2.0
examples/hello.c
15 строк
335 B
PJK
Compilation docs tweaks and examples tweaks
17 май 2015, 16:28
17 май 2015, 16:28
ed567ba
Код
Авторство
О чём код?
/* * Copyright (c) 2014-2015 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); }