-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
61 lines (61 loc) · 1.75 KB
/
main.c
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
#include <filesystem>
#include <windows.h>
#include "utf8_2_win1251.c"
/* Часть кода ниже написана для проверки функции utf8_2_win1251 наспех на коленке. Потому не претендует на красоту и скорость. Но вроде проверяет.
В целом она не нужна. */
#define SIZE 10000000
void main ()
{
unsigned int res;
SetConsoleCP(1251); SetConsoleOutputCP(1251);
char *Utf8 = (char*)malloc((SIZE * 4 + 1 + 2) * sizeof(char));
char *Wincp = (char*)malloc((SIZE + 1) * sizeof(char));
unsigned int i, j, k;
for (k = 1, j = 0; k < SIZE; k++)
{
#if 0
i = 0;
while (i == 0)
{
i = rand() % 1000000;
}
// printf("i = %d", i);
#else
i = k;
#endif
if (i < 0x80)
{
Utf8[j] = i;
j++;
}
if ((i >= 0x80) && (i < 0x800))
{
Utf8[j] = (i >> 6) + 0xC0;
Utf8[j + 1] = (i & 0x3F) + 0x80;
j += 2;
}
if ((i >= 0x800) && (i < 0x10000))
{
Utf8[j] = (i >> 12) + 0xE0;
Utf8[j + 1] = ((i >> 6) & 0x3F) + 0x80;
Utf8[j + 2] = (i & 0x3F) + 0x80;
j += 3;
}
if (i >= 0x10000)
{
Utf8[j] = (i >> 18) + 0xF0;
Utf8[j + 1] = ((i >> 12) & 0x3F) + 0x80;
Utf8[j + 2] = ((i >> 6) & 0x3F) + 0x80;
Utf8[j + 3] = (i & 0x3F) + 0x80;
j += 4;
}
}
Utf8[j] = '\0';
size_t time = clock();
res = utf8_2_win1251 (Utf8, Wincp);
time = clock() - time;
printf("%s\n\ntime = %d", Wincp, time);
free(Utf8); free(Wincp);
scanf("%d",&i);
return;
}