File: mem.h

package info (click to toggle)
httping 1.2.6-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 160 kB
  • ctags: 57
  • sloc: ansic: 1,329; makefile: 63
file content (8 lines) | stat: -rw-r--r-- 281 bytes parent folder | download
1
2
3
4
5
6
7
8
/* (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);
void dump_mem(int sig);