summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorPreston Pan <preston@nullring.xyz>2023-01-06 20:48:56 -0800
committerPreston Pan <preston@nullring.xyz>2023-01-06 20:48:56 -0800
commitc620d528fb9d9efbac559002d23857623e71df05 (patch)
treed8d6ee788cc4688a3c4a4401906fe3ce25307855 /src/include
parent0771dd0e1a143c17920d65d5de8d010aa433ce1c (diff)
whoops, fixed concat. Include in the making
Diffstat (limited to 'src/include')
-rw-r--r--src/include/nxspp.h8
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