File: strsave.h

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