home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Source Code
/
C
/
Utilities
/
ENV Server
/
Common src
/
utils.h
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1993-05-31
|
336 b
|
21 lines
|
[
TEXT/ALFA
]
/*
** utils.h
**
** header file for utilities
*/
#ifndef UTILS_H
#define UTILS_H
Boolean TrapAvailable(int theTrap);
/** My homebuilt string functions - to avoid the standard libraries **/
long mystrlen( char *s);
char *mystrcpy( char *s1, char *s2);
char *mystrcat( char *s1, char *s2);
char *mystrchr( char *s1, char c);
#endif