File: mem.h

package info (click to toggle)
httping 1.5.3-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 184 kB
  • sloc: ansic: 1,549; makefile: 64
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);