1 2 3 4 5 6 7 8 9 10 11 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