\param arraylen the max number of elements in the array
\return the number of elements added to the array
*/
-SWITCH_DECLARE(unsigned int) switch_separate_string(char *buf, char delim, char **array, int arraylen);
+SWITCH_DECLARE(unsigned int) switch_separate_string(char *buf, char delim, char **array, unsigned int arraylen);
SWITCH_DECLARE(switch_bool_t) switch_is_number(const char *str);
SWITCH_DECLARE(char *) switch_strip_spaces(const char *str);
}
/* Separate a string using a delimiter that is not a space */
-static unsigned int separate_string_char_delim(char *buf, char delim, char **array, int arraylen)
+static unsigned int separate_string_char_delim(char *buf, char delim, char **array, unsigned int arraylen)
{
enum tokenizer_state {
START,
unsigned int count = 0;
char *ptr = buf;
int inside_quotes = 0;
- int i;
+ unsigned int i;
while (*ptr && count < arraylen) {
switch (state) {
}
/* Separate a string using a delimiter that is a space */
-static unsigned int separate_string_blank_delim(char *buf, char **array, int arraylen)
+static unsigned int separate_string_blank_delim(char *buf, char **array, unsigned int arraylen)
{
enum tokenizer_state {
START,
unsigned int count = 0;
char *ptr = buf;
int inside_quotes = 0;
- int i;
+ unsigned int i;
while (*ptr && count < arraylen) {
switch (state) {
return count;
}
-SWITCH_DECLARE(unsigned int) switch_separate_string(char *buf, char delim, char **array, int arraylen)
+SWITCH_DECLARE(unsigned int) switch_separate_string(char *buf, char delim, char **array, unsigned int arraylen)
{
if (!buf || !array || !arraylen) {
return 0;