/* $Id: runtime.h 142 2000-04-23 14:55:46Z ktk $ */ //ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ» //º runtime.h º //º Avoid problems using the runtime library functions º //º º //º MODIFICATION HISTORY º //º DATE PROGRAMMER COMMENT º //º 03-26-97 Rich Jerant Creation How did we ever do without thisº //º Nothing pretty here just prototypes for º //º most of the functions in runtime.lib º //º º //ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ #ifndef RUNTIME_INCLUDED #define RUNTIME_INCLUDED int toupper(int c); char *strncpy(char *dst, const char *src, int n); char __far *_fstrncpy(char __far *dst, const char __far *src, int n); int _fstrnicmp(const char __far *string1, const char __far *string2, int n); #endif