-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstringUtils.h
63 lines (55 loc) · 1.78 KB
/
stringUtils.h
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
57
58
59
60
61
62
63
void copyString(const char* str, char* buffer) {
unsigned int len = strlen(str);
strncpy(buffer, str, len);
buffer[len] = '\0';
}
void capitalizeWords(char *str) {
// Check if the string is not empty
if (str != NULL) {
int i=0;
str[i] = toupper(str[0]);
i++;//increment after every look
while(str[i] != '\0') {
if(isspace(str[i])) {
str[i] = str[i];
str[i+1] = toupper(str[i+1]);
i+=2;//look twice, increment twice
} else {
i++;//increment after every look
}
}
}
}
void convertUtf8ToIso88591Hex(char* input) {
char buffer[512]; // Temporary buffer for the converted string
int bufferIndex = 0;
for (int i = 0; input[i] != '\0'; i++) {
unsigned char c = (unsigned char)input[i];
if (c < 0x80) {
// ASCII character, copy directly
buffer[bufferIndex++] = c;
} else if (c >= 0xC2 && c <= 0xDF) {
// UTF-8 two-byte sequence for ISO-8859-1 characters
unsigned char next = (unsigned char)input[++i];
buffer[bufferIndex++] = ((c & 0x1F) << 6) | (next & 0x3F);
} else {
// Unsupported character, replace with '?'
buffer[bufferIndex++] = '?';
}
}
buffer[bufferIndex] = '\0'; // Null-terminate the new string
// Copy the modified string back to the input
strcpy(input, buffer);
}
void formatString (const char* str, char* buffer, unsigned int limit) {
unsigned int len = strlen(str);
if (len == 0) {
buffer[0] = '\0';
} else {
unsigned int c = len > limit ? limit : len;
strncpy(buffer, str, c);
convertUtf8ToIso88591Hex(buffer);
capitalizeWords(buffer);
buffer[c] = '\0';
}
}