mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 02:25:18 +03:00
9 lines
137 B
C
9 lines
137 B
C
|
#include <yaml.h>
|
||
|
|
||
|
int main() {
|
||
|
yaml_parser_t parser;
|
||
|
yaml_parser_initialize(&parser);
|
||
|
yaml_parser_delete(&parser);
|
||
|
return 0;
|
||
|
}
|