90s

Minimalist, customizable shell written in C99 with syntax highlighting
git clone https://codeberg.org/night0721/90s
Log | Files | Refs | README | LICENSE

90s.h (119B)


      1 #ifndef RUSH_H_
      2 #define RUSH_H_
      3 
      4 #include <stdio.h>
      5 
      6 void *memalloc(size_t size);
      7 char **argsplit(char *line);
      8 
      9 #endif