File: mem.h

package info (click to toggle)
httping 1.4.4-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 180 kB
  • ctags: 68
  • sloc: ansic: 1,400; makefile: 63
file content (7 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
/* (C) 2007 by folkert@vanheusden.com
 * The GPL (GNU public license) applies to this sourcecode.
 */
void * mymalloc(int size, char *what);
void * myrealloc(void *oldp, int newsize, char *what);
void myfree(void *p);
char * mystrdup(char *in, char *what);