File: strsave.h

package info (click to toggle)
lookup 1.08b-15
  • links: PTS
  • area: main
  • in suites: sid
  • size: 1,784 kB
  • sloc: ansic: 12,638; makefile: 247; perl: 174; sh: 53
file content (10 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#ifndef __STRSAVE_H__ /* file wrapper */
#define __STRSAVE_H__
#ifdef _USING_DGUX
# include <string.h>
#else
# include <string.h>
 /* return a private copy of the given string, die if out of memory */
 extern unsigned char *strsave(const unsigned char *);
#endif
#endif /* file wrapper */