]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/str-split.c
Table: renamed table_col_order[_by_name] -> table_set_col_order[_by_name]
[libucw.git] / ucw / str-split.c
index 40138362d8847fe3381449a4dbfd04cb28b5f3ac..16aa56b99941704c739b47617f52303ef00ab8cc 100644 (file)
@@ -15,9 +15,9 @@
 #include <string.h>
 
 int
-str_sepsplit(char *str, uns sep, char **rec, uns max)
+str_sepsplit(char *str, uint sep, char **rec, uint max)
 {
-  uns cnt = 0;
+  uint cnt = 0;
   while (1)
   {
     rec[cnt++] = str;
@@ -31,9 +31,9 @@ str_sepsplit(char *str, uns sep, char **rec, uns max)
 }
 
 int
-str_wordsplit(char *src, char **dst, uns max)
+str_wordsplit(char *src, char **dst, uint max)
 {
-  uns cnt = 0;
+  uint cnt = 0;
 
   for(;;)
     {