00001 //////////////////////////////////////////////////////////////////////////////// 00002 // Scorched3D (c) 2000-2009 00003 // 00004 // This file is part of Scorched3D. 00005 // 00006 // Scorched3D is free software; you can redistribute it and/or modify 00007 // it under the terms of the GNU General Public License as published by 00008 // the Free Software Foundation; either version 2 of the License, or 00009 // (at your option) any later version. 00010 // 00011 // Scorched3D is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00014 // GNU General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU General Public License 00017 // along with Scorched3D; if not, write to the Free Software 00018 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 //////////////////////////////////////////////////////////////////////////////// 00020 00021 #ifndef __SNPRINTF_SAMBA__ 00022 #define __SNPRINTF_SAMBA__ 00023 00024 #include <stdio.h> // For snprintf on linux 00025 #include <string> 00026 #include <stdarg.h> // For va_list 00027 00028 #ifndef HAVE_SNPRINTF 00029 00030 #define snprintf smb_snprintf 00031 #define vsnprintf smb_vsnprintf 00032 00033 #ifdef __cplusplus 00034 extern "C" { 00035 #endif 00036 00037 extern int snprintf(char *str, size_t size, const char *format, ...); 00038 extern int vsnprintf(char *str, size_t size, const char *format, va_list ap); 00039 00040 #ifdef __cplusplus 00041 } 00042 #endif 00043 00044 #endif // HAVE_SNPRINTF 00045 00046 /* 00047 #define _STD_USING 00048 #ifdef sprintf 00049 #undef sprintf 00050 #endif 00051 #define sprintf __ERROR__XX__NEVER_USE_SPRINTF__; 00052 00053 #ifdef vsprintf 00054 #undef vsprintf 00055 #endif 00056 #define vsprintf __ERROR__XX__NEVER_USE_VSPRINTF__; 00057 */ 00058 00059 namespace S3D 00060 { 00061 //extern const char *formatStringBuffer(const char *format, ...); 00062 std::string formatStringBuffer(const char *format, ...); 00063 std::string formatStringList(const char *format, va_list ap); 00064 char *stristr(const char *x, const char *y); 00065 void trim(std::string &value); 00066 } 00067 00068 #endif // __SNPRINTF_SAMBA__
1.5.3