blob: 86e1c14af9a9ab839e84ede057b30229be0743b5 [file] [log] [blame]
/* $Id$
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to you under the Apache License, Version
* 2.0 (the "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifdef STRINGUTILS_INC_HEADER
#define _WINSOCKAPI_
#include <windows.h>
#include <stdarg.h>
#include "capu/Config.h"
#endif
#ifdef STRINGUTILS_INC_MEMBER
private:
#endif
#ifdef STRINGUTILS_INC_IMPL
inline void StringUtils::Strncpy(char* dst, uint_t dstSize, const char* src)
{
memcpy(dst, src, dstSize);
}
inline uint_t StringUtils::Strlen(const char* str)
{
return strlen(str);
}
inline int_t StringUtils::Strcmp(const char* str1, const char* str2)
{
return strcmp(str1, str2);
}
inline void StringUtils::Vsprintf(char* buffer, uint_t bufferSize, const char* format, va_list values)
{
vsprintf_s(buffer, bufferSize, format, values);
}
inline int32_t StringUtils::Vscprintf(const char* format, va_list values) {
return _vscprintf(format, values);
}
inline void StringUtils::Sprintf(char* buffer, uint_t bufferSize, const char* format, ...)
{
va_list argptr;
va_start(argptr,format);
StringUtils::Vsprintf(buffer, bufferSize, format, argptr);
va_end(argptr);
}
#endif