git-svn-id: https://scorched3d.svn.sourceforge.net/svnroot/scorched3d/trunk/scorched...
[scorched3d/parasti.git] / src / common / common / DefinesString.h
blobbaf1608909fbc57f01e399244870c52d15be23b8
1 ////////////////////////////////////////////////////////////////////////////////
2 // Scorched3D (c) 2000-2009
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.
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.
16 // You should have received a copy of the GNU General Public License
17 // along with Scorched3D; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 ////////////////////////////////////////////////////////////////////////////////
21 #ifndef __SNPRINTF_SAMBA__
22 #define __SNPRINTF_SAMBA__
24 #include <stdio.h> // For snprintf on linux
25 #include <string>
26 #include <stdarg.h> // For va_list
28 #ifndef HAVE_SNPRINTF
30 #define snprintf smb_snprintf
31 #define vsnprintf smb_vsnprintf
33 #ifdef __cplusplus
34 extern "C" {
35 #endif
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);
40 #ifdef __cplusplus
42 #endif
44 #endif // HAVE_SNPRINTF
47 #define _STD_USING
48 #ifdef sprintf
49 #undef sprintf
50 #endif
51 #define sprintf __ERROR__XX__NEVER_USE_SPRINTF__;
53 #ifdef vsprintf
54 #undef vsprintf
55 #endif
56 #define vsprintf __ERROR__XX__NEVER_USE_VSPRINTF__;
59 namespace S3D
61 //extern const char *formatStringBuffer(const char *format, ...);
62 std::string formatStringBuffer(const char *format, ...);
63 std::string formatStringList(const char *format, va_list ap);
64 char *stristr(const char *x, const char *y);
65 void trim(std::string &value);
68 #endif // __SNPRINTF_SAMBA__