File: util.h

package info (click to toggle)
xfingerd 0.6-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 352 kB
  • ctags: 97
  • sloc: sh: 2,679; ansic: 996; makefile: 65
file content (9 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#ifndef __UTIL_H_
#define __UTIL_H_ 1

void *xmalloc (int nbytes);
void *xrealloc (void *pointer, int nbytes);
char *xstrdup (const char *s);
char *xmakepath (const char *s, const char *q);

#endif __UTIL_H_