Rev 3280 |
Go to most recent revision |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
#ifndef UTIL_H
#define UTIL_H
/* For internal getopt-like stuff */
extern unsigned int is_option(char *);
extern unsigned int count_options(char *[]);
/* String functions not yet present in HelenOS uspace libc */
extern char * cli_strdup(const char *s1);
extern char * cli_strtok_r(char *, const char *, char **);
extern char * cli_strtok(char *, const char *);
extern void cli_free(void **);
#endif