ThingWorx C SDK
stringUtils.h
Go to the documentation of this file.
1 /***************************************
2  * Copyright (C) 2015 ThingWorx Inc. *
3  ***************************************/
4 
10 #ifndef TW_STRING_UTILS_H
11 #define TW_STRING_UTILS_H
12 
13 #include "string.h"
14 
15 #ifdef __cplusplus
16 extern "C" {
17 #endif
18 
28 char * lowercase(char *input);
29 
39 char * uppercase(char *input);
40 
51 char * duplicateString(const char * input);
52 
53 #ifdef __cplusplus
54 }
55 #endif
56 
57 #endif
char * uppercase(char *input)
Converts a string to uppercase.
Definition: stringUtils.c:27
char * lowercase(char *input)
Converts a string to lowercase.
Definition: stringUtils.c:16
char * duplicateString(const char *input)
Copies a string.
Definition: stringUtils.c:38