"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 #ifndef UTIL_H
2 #define UTIL_H
3
4 #include <sys/types.h>
5
6 int util_iconnect(const char *host, unsigned short port);
7 pid_t util_pipeto(char * const cmd[], int *read, int *write);
8
9 void util_chomp(char *buf);
10 int util_split(const char *delim, char *buf, char **resp, int max);
11
12 #endif /* UTIL_H */