From c620d528fb9d9efbac559002d23857623e71df05 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Fri, 6 Jan 2023 20:48:56 -0800 Subject: whoops, fixed concat. Include in the making --- src/include/nxspp.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/include') 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 -- cgit