blob: 8f7d1655bbd59072aac233ccc4592fa24c5d1441 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#ifndef ALSTRING_H
#define ALSTRING_H
#include <string.h>
#include "vector.h"
typedef char al_string_char_type;
DECL_VECTOR(al_string_char_type)
typedef vector_al_string_char_type al_string;
typedef const_vector_al_string_char_type const_al_string;
#define AL_STRING_INIT(_x) do { (_x) = calloc(1, sizeof(*(_x)) + sizeof((_x)->Data[0])); } while(0)
#define AL_STRING_DEINIT(_x) VECTOR_DEINIT(_x)
inline ALsizei al_string_length(const_al_string str)
{ return VECTOR_SIZE(str); }
inline ALsizei al_string_empty(const_al_string str)
{ return al_string_length(str) == 0; }
inline const al_string_char_type *al_string_get_cstr(const_al_string str)
{ return &VECTOR_FRONT(str); }
void al_string_clear(al_string *str);
inline int al_string_cmp(const_al_string str1, const_al_string str2)
{ return strcmp(al_string_get_cstr(str1), al_string_get_cstr(str2)); }
inline int al_string_cmp_cstr(const_al_string str1, const al_string_char_type *str2)
{ return strcmp(al_string_get_cstr(str1), str2); }
void al_string_copy(al_string *str, const_al_string from);
void al_string_copy_cstr(al_string *str, const al_string_char_type *from);
void al_string_append_char(al_string *str, const al_string_char_type c);
void al_string_append_cstr(al_string *str, const al_string_char_type *from);
void al_string_append_range(al_string *str, const al_string_char_type *from, const al_string_char_type *to);
#ifdef _WIN32
#include <wchar.h>
/* Windows-only methods to deal with WideChar strings. */
void al_string_copy_wcstr(al_string *str, const wchar_t *from);
#endif
#endif /* ALSTRING_H */
|