Home
last modified time | relevance | path

Searched refs:vfile_contents (Results 1 – 1 of 1) sorted by relevance

/dports/games/opensonic/opensnc-src-0.1.4/src/core/nanoparser/
H A Dnanoparser.c233 static expandable_array_int* vfile_contents; /* file contents */ variable
775 vfile_contents = expandable_array_int_new(); in vfile_create()
780 vfile_contents = expandable_array_int_delete(vfile_contents); in vfile_destroy()
788 if(vfile_ptr < expandable_array_int_size(vfile_contents)) { in vfile_getc()
789 int *ptr = expandable_array_int_at(vfile_contents, vfile_ptr++); in vfile_getc()
799 int *ptr = expandable_array_int_at(vfile_contents, --vfile_ptr); in vfile_ungetc()
809 int size = expandable_array_int_size(vfile_contents); in vfile_putc()
812 int *ptr = expandable_array_int_at(vfile_contents, vfile_ptr++); in vfile_putc()
816 expandable_array_int_push_back(vfile_contents, c); in vfile_putc()