home *** CD-ROM | disk | FTP | other *** search
- /* Misc.h - Header file for miscellaneous modules - © 1991 Bryan Ford */
- #ifndef BRY_MISC_H
- #define BRY_MISC_H
-
- /* String functions */
- char * __regargs StripBlanks(char *str);
- int Stricmp(char *a,char *b);
-
- /* Case conversion */
- char __regargs ToUpper(char c);
- long __regargs ToUpperLong(long c4);
-
- /* SPrintF.asm */
- void __stdargs SPrintF(char *outbuf,char *formatstring,...);
- void __stdargs VSPrintF(char *outbuf,char *formatstring,long *arguments);
-
- #endif
-