summaryrefslogtreecommitdiff
path: root/task5.c
blob: c2c72d0cebbd05a033ffd9a5add463743afded32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "lib.h"

/*
 * implements task 5 of set 1 of matanso challange
 */
void main()
{
	char *stanze = "Burning 'em, if you ain't quick and nimble\nI go crazy when I hear a cymbal";
	
	char *result = malloc(strlen(stanze));
	char *printable = malloc(strlen(stanze)*5);
	xor_string(stanze, "ICE", result);
	hex_binary_to_string(result, printable, 2*strlen(stanze));
	printf("%s\n", printable);
}