Last change
on this file since 200 was 142, checked in by ktk, 25 years ago |
Import
|
-
Property svn:eol-style
set to
native
-
Property svn:keywords
set to
Author Date Id Revision
|
File size:
1.0 KB
|
Line | |
---|
1 | /* $Id: runtime.h 142 2000-04-23 14:55:46Z ktk $ */
|
---|
2 |
|
---|
3 | //ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
|
---|
4 | //º runtime.h º
|
---|
5 | //º Avoid problems using the runtime library functions º
|
---|
6 | //º º
|
---|
7 | //º MODIFICATION HISTORY º
|
---|
8 | //º DATE PROGRAMMER COMMENT º
|
---|
9 | //º 03-26-97 Rich Jerant Creation How did we ever do without thisº
|
---|
10 | //º Nothing pretty here just prototypes for º
|
---|
11 | //º most of the functions in runtime.lib º
|
---|
12 | //º º
|
---|
13 | //ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍŒ
|
---|
14 | #ifndef RUNTIME_INCLUDED
|
---|
15 | #define RUNTIME_INCLUDED
|
---|
16 |
|
---|
17 | int toupper(int c);
|
---|
18 | char *strncpy(char *dst, const char *src, int n);
|
---|
19 | char __far *_fstrncpy(char __far *dst, const char __far *src, int n);
|
---|
20 | int _fstrnicmp(const char __far *string1, const char __far *string2, int n);
|
---|
21 |
|
---|
22 | #endif
|
---|
Note:
See
TracBrowser
for help on using the repository browser.