Browse CVS Repository
Contents of /enbanfukusyaya/EnbanKensa/common/ebstring.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.1 -
( show annotations)
( download)
( as text)
Sun Mar 12 12:52:14 2006 UTC
(18 years, 1 month ago)
by bananajinn
Branch: MAIN
CVS Tags: HEAD
File MIME type: text/x-chdr
*** empty log message ***
| 1 |
/* ~Ő¸ - EnbanKensa |
| 2 |
* Copyright (C) 2005-2006 Kagetani Hideto |
| 3 |
*/ |
| 4 |
#ifndef __EBSTRING_H__ |
| 5 |
#define __EBSTRING_H__ |
| 6 |
|
| 7 |
extern char *EbStringNew(const char *string); |
| 8 |
extern char *EbStringNewWithFormat(const char *format, ...); |
| 9 |
extern char *EbStringAppend(char *ebstring, const char *append_string); |
| 10 |
extern char *EbStringAppendWithFormat(char *ebstring, const char *format, ...); |
| 11 |
extern char *EbStringFree(char *ebstring); |
| 12 |
extern char *EbStringGetString(const char *string, int len, char trim); |
| 13 |
|
| 14 |
#endif /* !__EBSTRING_H__ */ |
|