Browse CVS Repository
Contents of /enbanfukusyaya/EnbanFukusyaYa/DriveAccess/ebstring.h
Parent Directory
| Revision Log
| Revision Graph
Revision 1.4 -
( show annotations)
( download)
( as text)
Fri Nov 5 17:24:03 2010 UTC
(13 years, 5 months ago)
by bananajinn
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +26 -26 lines
File MIME type: text/x-chdr
*** empty log message ***
| 1 |
/** |
| 2 |
* @file ebstring.h |
| 3 |
* @brief 文字列操作 |
| 4 |
* @author BananaJinn |
| 5 |
* @version $Id: ebstring.h,v 1.3 2010/11/02 15:23:51 bananajinn Exp $ |
| 6 |
* 円盤複写屋 - EnbanFukusyaYa |
| 7 |
* Copyright (C) 2005-2006 Kagetani Hideto |
| 8 |
*/ |
| 9 |
#ifndef __EBSTRING_H__ |
| 10 |
#define __EBSTRING_H__ |
| 11 |
|
| 12 |
#if defined(WIN32) |
| 13 |
# define PATH_SEPARATOR '\\' |
| 14 |
#else |
| 15 |
# define PATH_SEPARATOR '/' |
| 16 |
#endif |
| 17 |
|
| 18 |
extern char *EbStringNew(const char *string); |
| 19 |
extern char *EbStringNewWithFormat(const char *format, ...); |
| 20 |
extern char *EbStringAppend(char *ebstring, const char *append_string); |
| 21 |
extern char *EbStringAppendWithFormat(char *ebstring, const char *format, ...); |
| 22 |
extern char *EbStringAppendPath(char *ebstring, const char *path); |
| 23 |
extern char *EbStringFree(char *ebstring); |
| 24 |
extern char *EbStringGetString(const char *string, int len, char trim); |
| 25 |
|
| 26 |
#endif /* !__EBSTRING_H__ */ |
|