mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-19 01:39:32 -06:00
15 lines
212 B
C
15 lines
212 B
C
#ifndef GU_FILE_H_
|
|
#define GU_FILE_H_
|
|
|
|
#include <gu/in.h>
|
|
#include <gu/out.h>
|
|
#include <stdio.h>
|
|
|
|
GuOut*
|
|
gu_file_out(FILE* file, GuPool* pool);
|
|
|
|
GuIn*
|
|
gu_file_in(FILE* file, GuPool* pool);
|
|
|
|
#endif // GU_FILE_H_
|