blob: 20b1cdcf29f18d6e042884f18c3f86ad915dde5a (
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
|
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>
unsigned int crc32a(uint8_t *message, unsigned int size);
void rot13(char *buf)
{
while (*buf) {
if ((*buf >= 'a' && *buf <= 'm') ||
(*buf >= 'A' && *buf <= 'M')) {
*buf += 13;
} else if ((*buf >= 'n' && *buf <= 'z') ||
(*buf >= 'N' && *buf <= 'Z')) {
*buf -= 13;
}
buf++;
}
}
size_t strlen(const char *buf)
{
int len = 0;
while (buf[len])
len++;
return len;
}
extern void *__malloc_freelist;
int main()
{
__malloc_freelist = 0;
volatile int i = 0;
int j = 0;
char *fox = "The quick brown fox jumps of the lazy dog.";
unsigned int checksum = 0;
start:
while (i)
j++;
rot13(fox);
checksum ^= crc32a(fox, strlen(fox));
rot13(fox);
checksum ^= crc32a(fox, strlen(fox));
return checksum;
}
|