blob: 7862777094171147baa9383bd10110a33f169e40 (
plain) (
blame)
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
49
50
51
52
53
|
// Copyright (c) Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// Copyright (c) 2014 - 2015 Evol developers
#include "common/hercules.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "common/memmgr.h"
#include "common/strlib.h"
#include "ecommon/utils/strutil.h"
#include "ecommon/struct/strutildata.h"
struct strutil_data *strutil_split(const char *str,
const char separator,
const int len)
{
if (!str || len < 1)
return NULL;
struct strutil_data *data = aCalloc(1, sizeof(struct strutil_data));
if (!data)
return NULL;
data->str = aStrdup(str);
VECTOR_INIT(data->parts);
VECTOR_ENSURE(data->parts, len + 1, 1);
data->len = sv->split(data->str,
strlen(data->str),
0,
separator,
VECTOR_DATA(data->parts),
len + 1,
0);
if (data->len < 1)
{
strutil_free(data);
return NULL;
}
return data;
}
void strutil_free(struct strutil_data *data)
{
if (!data)
return;
VECTOR_CLEAR(data->parts);
aFree(data->str);
aFree(data);
}
|