diff options
Diffstat (limited to 'doc/manual/example3/function.h')
-rw-r--r-- | doc/manual/example3/function.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/manual/example3/function.h b/doc/manual/example3/function.h new file mode 100644 index 0000000..31ee673 --- /dev/null +++ b/doc/manual/example3/function.h @@ -0,0 +1,5 @@ +/* Give GlueGen a typedef for size_t */ +typedef int size_t; + +size_t strlen(const char* str); +char* strstr(const char* str1, const char* str2); |