toaruos/kernel/include/tokenize.h
Kevin Lange 56ad9598d0 New kernel args parser
I know, this is a lot slower than the old one, but it's a transition to
a new-new args parser that will use a hashmap... as soon as I get around
to writing a hashmap implementation.
2013-12-01 19:37:22 -08:00

7 lines
86 B
C

#ifndef TOKENIZE_H
#define TOKENIZE_H
int tokenize(char *, char *, char **);
#endif