1 ////////////////////////////////////////////////////////////////////////////////
2 //    Scorched3D (c) 2000-2011
3 //
4 //    This file is part of Scorched3D.
5 //
6 //    Scorched3D is free software; you can redistribute it and/or modify
7 //    it under the terms of the GNU General Public License as published by
8 //    the Free Software Foundation; either version 2 of the License, or
9 //    (at your option) any later version.
10 //
11 //    Scorched3D is distributed in the hope that it will be useful,
12 //    but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //    GNU General Public License for more details.
15 //
16 //    You should have received a copy of the GNU General Public License along
17 //    with this program; if not, write to the Free Software Foundation, Inc.,
18 //    51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 ////////////////////////////////////////////////////////////////////////////////
20 
21 #ifndef __SNPRINTF_SAMBA__
22 #define __SNPRINTF_SAMBA__
23 
24 #include <stdio.h> // For snprintf on linux
25 #include <string>
26 #include <stdarg.h> // For va_list
27 
28 #ifndef HAVE_SNPRINTF
29 
30 #define snprintf smb_snprintf
31 #define vsnprintf smb_vsnprintf
32 
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
36 
37 extern int snprintf(char *str, size_t size, const char *format, ...);
38 extern int vsnprintf(char *str, size_t size, const char *format, va_list ap);
39 
40 #ifdef __cplusplus
41 }
42 #endif
43 
44 #endif // HAVE_SNPRINTF
45 
46 /*
47 #define _STD_USING
48 #ifdef sprintf
49 #undef sprintf
50 #endif
51 #define sprintf __ERROR__XX__NEVER_USE_SPRINTF__;
52 
53 #ifdef vsprintf
54 #undef vsprintf
55 #endif
56 #define vsprintf __ERROR__XX__NEVER_USE_VSPRINTF__;
57 */
58 
59 namespace S3D
60 {
61 	//extern const char *formatStringBuffer(const char *format, ...);
62 	std::string formatMoney(int amount);
63 	std::string formatStringBuffer(const char *format, ...);
64 	std::string formatStringList(const char *format, va_list ap);
65 	char *stristr(const char *x, const char *y);
66 	void trim(std::string &value);
67 }
68 
69 #endif // __SNPRINTF_SAMBA__
70