blob: 7f6785a8e970c4fe6b9f81e745c7aa409c69d7fe (
plain)
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
54
55
56
|
#ifndef STRING_TICK_H
#define STRING_TICK_H
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
struct string {
char* data;
size_t len;
};
typedef struct string String;
typedef struct json_object Json;
/**
* Creates and returns a String object with len 1 and no data
* @return STRING object
*/
String* string_init(void);
/**
* Changes letters in a string to lowercase in place
* @param str the string
*/
void strtolower(char* str);
/**
* Changes letters in a string to uppercase in place
* @param str the string
*/
void strtoupper(char* str);
/**
* Returns the input string, stripped of the given char c in place
* @param string the string to strip the char from
* @param c the char to strip
* @return input string
*/
char* strip_char(char* string, char c);
/**
* Overwrites the portfolio with the given pString
* @param pString the String to overwrite with
*/
void string_write_portfolio(String* pString);
/**
* Destroys String object and frees memory. Points the String to NULL.
* @param phString the String to destroy
*/
void string_destroy(String** phString);
#endif
|