summaryrefslogtreecommitdiffstats
path: root/tinySAK/test/test_strings.h
diff options
context:
space:
mode:
Diffstat (limited to 'tinySAK/test/test_strings.h')
-rwxr-xr-xtinySAK/test/test_strings.h76
1 files changed, 38 insertions, 38 deletions
diff --git a/tinySAK/test/test_strings.h b/tinySAK/test/test_strings.h
index 2ba0391..03fe988 100755
--- a/tinySAK/test/test_strings.h
+++ b/tinySAK/test/test_strings.h
@@ -2,19 +2,19 @@
* Copyright (C) 2009 Mamadou Diop.
*
* Contact: Mamadou Diop <diopmamadou(at)doubango.org>
-*
+*
* This file is part of Open Source Doubango Framework.
*
* DOUBANGO is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
-*
+*
* DOUBANGO is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
-*
+*
* You should have received a copy of the GNU General Public License
* along with DOUBANGO.
*
@@ -25,51 +25,51 @@
/* test string manipulation */
void test_strings()
{
- char* str = tsk_null;
- int index;
+ char* str = tsk_null;
+ int index;
+
+ /* IndexOf */
+ index = tsk_strindexOf("C:\\test.zip", 5, "\\");
+ index = tsk_strindexOf("C:\\test.zip", tsk_strlen("C:\\test.zip"), "abc");
+ index = tsk_strLastIndexOf("C:\\my dirctory\\test.zip", tsk_strlen("C:\\my dirctory\test.zip"), "\\");
+ index = tsk_strLastIndexOf("C:\\my dirctory\\test.zip", tsk_strlen("C:\\my dirctory\test.zip"), ".");
+
+ /* LastIndexOf */
- /* IndexOf */
- index = tsk_strindexOf("C:\\test.zip", 5, "\\");
- index = tsk_strindexOf("C:\\test.zip", tsk_strlen("C:\\test.zip"), "abc");
- index = tsk_strLastIndexOf("C:\\my dirctory\\test.zip", tsk_strlen("C:\\my dirctory\test.zip"), "\\");
- index = tsk_strLastIndexOf("C:\\my dirctory\\test.zip", tsk_strlen("C:\\my dirctory\test.zip"), ".");
+ /* concatenation */
+ tsk_strcat(&str, " first ");
+ printf("test_strings/// strcat=%s\n", str);
- /* LastIndexOf */
-
- /* concatenation */
- tsk_strcat(&str, " first ");
- printf("test_strings/// strcat=%s\n", str);
+ /* Trim Right */
+ tsk_strtrim_right(&str);
+ printf("test_strings/// trim_right=%s\n", str);
- /* Trim Right */
- tsk_strtrim_right(&str);
- printf("test_strings/// trim_right=%s\n", str);
+ tsk_strcat(&str, "second");
+ printf("test_strings/// strcat=%s\n", str);
- tsk_strcat(&str, "second");
- printf("test_strings/// strcat=%s\n", str);
+ /* Trim Left */
+ tsk_strtrim_left(&str);
+ printf("test_strings/// trim_left=%s\n", str);
- /* Trim Left */
- tsk_strtrim_left(&str);
- printf("test_strings/// trim_left=%s\n", str);
+ tsk_free((void**)&str);
- tsk_free((void**)&str);
-
- /* sprintf */
- tsk_sprintf(&str, " \n\t%s %s\r ", "first", "second");
- printf("test_strings/// strcat=\"%s\"\n", str);
+ /* sprintf */
+ tsk_sprintf(&str, " \n\t%s %s\r ", "first", "second");
+ printf("test_strings/// strcat=\"%s\"\n", str);
- /* Trim Both */
- tsk_strtrim_both(&str);
- printf("test_strings/// trim_both=%s\n", str);
+ /* Trim Both */
+ tsk_strtrim_both(&str);
+ printf("test_strings/// trim_both=%s\n", str);
- /* Quote */
- tsk_strquote(&str);
- printf("test_strings/// quote=%s\n", str);
+ /* Quote */
+ tsk_strquote(&str);
+ printf("test_strings/// quote=%s\n", str);
- /* Unquote */
- tsk_strunquote(&str);
- printf("test_strings/// unquote=%s\n", str);
+ /* Unquote */
+ tsk_strunquote(&str);
+ printf("test_strings/// unquote=%s\n", str);
- tsk_free((void**)&str);
+ tsk_free((void**)&str);
}
#endif /* _TEST_STRINGS_H_ */
OpenPOWER on IntegriCloud