home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Celestin Apprentice 2
/
Apprentice-Release2.iso
/
Source Code
/
Think Class Libraries
/
CommToolbox (modified)
/
Headers
/
stringx.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
|
1994-11-30
|
360 b
|
28 lines
|
[
TEXT/KAHL
]
/*
* stringx.h
*
* miscellaneous string functions
*
* Copyright (c) 1994 Ithran Einhorn. All rights reserved.
*
*/
#pragma once
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#ifdef __cplusplus
extern "C" {
#endif
int stricmp(const char *, const char *);
char *TrimRight(char *t_str);
#ifdef __cplusplus
}
#endif