diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/nxspp.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/include/nxspp.h b/src/include/nxspp.h index d60832f..d88ab57 100644 --- a/src/include/nxspp.h +++ b/src/include/nxspp.h @@ -1,4 +1,12 @@ #ifndef NXSPP_H #define NXSPP_H +typedef struct { + char *source; + char c; + int i; +} npp_t; + +npp_t *init_npp(char *source); +char *process_string(npp_t *p); #endif |