-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutility.h
50 lines (39 loc) · 1.07 KB
/
utility.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
#pragma once
#include<stdio.h>
#include <string.h>
#include <malloc.h>
#include <stdlib.h>
const char first[] = "&";
const char second[] = "<";
const char third[] = ">";
int append(char buffer[], const char *encoding, int index, int offset) {
for(int i = 0; i < (int)strlen(encoding); i++) {
buffer[index + offset] = encoding[i];
offset++;
}
return --offset;
}
char *textinput(char string[]) {
if(strcmp(string, "")) {
return "";
}
int offset = 0;
char *buffer = malloc(5 * strlen(string) * sizeof(char) + 1);
for(int i = 0; i < (int)strlen(string); i++) {
if(string[i] == '&') {
offset = append(buffer, first, i, offset);
}
else if(string[i] == '<') {
offset = append(buffer, second, i, offset);
}
else if(string[i] == '>') {
offset = append(buffer, third, i, offset);
}
else {
buffer[i + offset] = string[i];
}
}
char *final = buffer;
free(buffer);
return final;
}