Rev 3397 |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
#ifndef UTIL_H
#define UTIL_H
#include "scli.h"
/* Internal string handlers */
extern char * cli_strdup(const char *);
extern char * cli_strtok_r(char *, const char *, char **);
extern char * cli_strtok(char *, const char *);
/* Utility functions */
extern unsigned int cli_count_args(char **);
extern unsigned int cli_set_prompt(cliuser_t *usr);
#endif