Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3264 → Rev 3265

/branches/shell/uspace/app/bdsh/util.h
0,0 → 1,13
#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