2006-01-25 01:35:04 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2010-05-06 21:04:40 +00:00
|
|
|
* Copyright (C) 2010 Thomas Martitz
|
2006-01-25 01:35:04 +00:00
|
|
|
*
|
2008-06-28 18:10:04 +00:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2006-01-25 01:35:04 +00:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2014-08-06 08:26:52 +00:00
|
|
|
#ifndef STRING_EXTRA_H
|
|
|
|
#define STRING_EXTRA_H
|
2010-05-06 21:04:40 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include "strlcpy.h"
|
|
|
|
#include "strlcat.h"
|
|
|
|
#include "strcasecmp.h"
|
|
|
|
#include "strcasestr.h"
|
2022-11-14 16:32:34 +00:00
|
|
|
#include "strmemccpy.h"
|
2010-05-14 22:57:52 +00:00
|
|
|
#include "strtok_r.h"
|
2010-08-12 13:55:01 +00:00
|
|
|
#include "memset16.h"
|
2014-08-06 08:26:52 +00:00
|
|
|
|
2014-08-30 03:36:11 +00:00
|
|
|
#if defined(WIN32) || defined(APPLICATION) \
|
|
|
|
|| defined(__PCTOOL__)
|
2014-08-06 08:26:52 +00:00
|
|
|
#ifndef mempcpy
|
|
|
|
#define mempcpy __builtin_mempcpy
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2014-08-27 03:11:34 +00:00
|
|
|
/* copies a buffer of len bytes and null terminates it */
|
|
|
|
static inline char * strmemcpy(char *dst, const char *src, size_t len)
|
|
|
|
{
|
|
|
|
/* NOTE: for now, assumes valid parameters! */
|
|
|
|
*(char *)mempcpy(dst, src, len) = '\0';
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* duplicate and null-terminate a memory block on the stack with alloca() */
|
|
|
|
#define strmemdupa(s, l) \
|
|
|
|
({ const char *___s = (s); \
|
|
|
|
size_t ___l = (l); \
|
|
|
|
char *___buf = alloca(___l + 1); \
|
|
|
|
strmemcpy(___buf, ___s, ___l); })
|
|
|
|
|
|
|
|
/* strdupa and strndupa may already be provided by a system's string.h */
|
|
|
|
|
|
|
|
#ifndef strdupa
|
|
|
|
/* duplicate an entire string on the stack with alloca() */
|
|
|
|
#define strdupa(s) \
|
|
|
|
({ const char *__s = (s); \
|
|
|
|
strmemdupa((__s), strlen(__s)); })
|
|
|
|
#endif /* strdupa */
|
|
|
|
|
|
|
|
#ifndef strndupa
|
|
|
|
/* duplicate a string on the stack with alloca(), truncating it if it is too
|
|
|
|
long */
|
|
|
|
#define strndupa(s, n) \
|
|
|
|
({ const char *__s = (s); \
|
|
|
|
size_t __n = (n); \
|
|
|
|
size_t __len = strlen(_s); \
|
|
|
|
strmemdupa(__s, MIN(__n, __len)); })
|
|
|
|
#endif /* strndupa */
|
|
|
|
|
2014-08-06 08:26:52 +00:00
|
|
|
#endif /* STRING_EXTRA_H */
|