mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
6e6422de35
* new file: projects/pyyaml.org/libyaml/fixture.c new file: projects/pyyaml.org/libyaml/package.yml * should work without `-L` (`tea` should handle) --------- Co-authored-by: Jacob Heider <jacob@tea.xyz>
8 lines
143 B
C
8 lines
143 B
C
#include <yaml.h>
|
|
|
|
int main() {
|
|
yaml_parser_t parser;
|
|
yaml_parser_initialize(&parser);
|
|
yaml_parser_delete(&parser);
|
|
return 0;
|
|
} |