Subversion Repositories HelenOS

Rev

Rev 3346 | Rev 3377 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3346 Rev 3376
1
#ifndef UTIL_H
1
#ifndef UTIL_H
2
#define UTIL_H
2
#define UTIL_H
3
 
3
 
4
/* Internal string handlers */
4
/* Internal string handlers */
5
extern char * cli_strdup(const char *);
5
extern char * cli_strdup(const char *);
6
extern int cli_redup(char **, const char *);
6
extern int cli_redup(char **, const char *);
7
extern int cli_psprintf(char **, const char *, ...);
7
extern int cli_psprintf(char **, const char *, ...);
8
extern char * cli_strtok_r(char *, const char *, char **);
8
extern char * cli_strtok_r(char *, const char *, char **);
9
extern char * cli_strtok(char *, const char *);
9
extern char * cli_strtok(char *, const char *);
-
 
10
extern unsigned int cli_count_args(char **);
10
 
11
 
11
#endif
12
#endif
12
 
13