dxx-rebirth/common/include/strutil.h

78 lines
2.2 KiB
C
Raw Normal View History

2014-06-01 17:55:23 +00:00
/*
* This file is part of the DXX-Rebirth project <http://www.dxx-rebirth.com/>.
* It is copyright by its individual contributors, as recorded in the
* project's Git history. See COPYING.txt at the top level for license
* terms and a link to the Git history.
*/
2015-01-11 05:08:30 +00:00
#pragma once
2006-03-20 16:43:15 +00:00
#ifdef __cplusplus
2015-01-11 05:08:30 +00:00
#include <cstdint>
#include "dxxsconf.h"
#include <vector>
#if defined(macintosh)
2015-01-11 05:08:30 +00:00
#define snprintf macintosh_snprintf
extern void snprintf(char *out_string, int size, const char * format, ... );
#endif
2015-01-12 00:26:03 +00:00
#ifdef DXX_HAVE_STRCASECMP
#define d_stricmp strcasecmp
static inline int d_strnicmp(const char *s1, const char *s2, size_t n)
{
return strncasecmp(s1, s2, n);
}
#else
2015-01-11 05:08:30 +00:00
__attribute_nonnull()
extern int d_stricmp( const char *s1, const char *s2 );
2015-01-11 05:08:30 +00:00
__attribute_nonnull()
int d_strnicmp(const char *s1, const char *s2, uint_fast32_t n);
2015-01-12 00:26:03 +00:00
#endif
extern void d_strlwr( char *s1 );
extern void d_strupr( char *s1 );
extern void d_strrev( char *s1 );
#ifdef DEBUG_MEMORY_ALLOCATIONS
extern char *d_strdup(const char *str) __attribute_malloc();
#else
#include <cstring>
#define d_strdup strdup
#endif
template <std::size_t N>
static inline int d_strnicmp(const char *s1, const char (&s2)[N])
{
return d_strnicmp(s1, s2, N - 1);
}
2013-06-09 18:10:09 +00:00
struct splitpath_t
{
const char *drive_start, *drive_end, *path_start, *path_end, *base_start, *base_end, *ext_start;
};
// remove extension from filename, doesn't work with paths.
void removeext(const char *filename, char *out);
//give a filename a new extension, doesn't work with paths with no extension already there
extern void change_filename_extension( char *dest, const char *src, const char *new_ext );
// split an MS-DOS path into drive, directory path, filename without the extension (base) and extension.
// if it's just a filename with no directory specified, this function will get 'base' and 'ext'
2013-06-09 18:10:09 +00:00
void d_splitpath(const char *name, struct splitpath_t *path);
struct string_array_t
{
std::vector<char> buffer;
std::vector<const char *> ptr;
void clear()
{
ptr.clear();
buffer.clear();
}
void add(const char *);
void tidy(std::size_t offset, int (*comp)( const char *, const char * ));
};
int string_array_sort_func(char **e0, char **e1);
#endif