aboutsummaryrefslogtreecommitdiffstats
path: root/randomcase.c
blob: 71e86363fe1cbb5d35190dacaf794e4069201192 (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
// Randomises the cases of letters. An IRC in joke from when I found out about the C+=
// project. (Letter equality)
#include <stdlib.h>
#include <stdio.h>
#include <time.h>


#define MAXLINE 1000

void upper (char string[], int position) {
	
	if (string[position] < 'z' && string[position] > 'a' ) {
		string[position] -= 'a';
		string[position] += 'A';
	}
}

void lower (char string[], int position) {
	
	if (string[position] < 'Z' && string[position] > 'A' ) {
		string[position] -= 'A';
		string[position] += 'a';
	}
}



int main (int argc, char **argv) {
	srand(time(NULL));
	
	char input_string[MAXLINE];
	char c;
	int i = 0;

	while ((c = getchar()) != '\0') {
		input_string[i++] = c;
	}
	
	input_string[i] = '\0';	
	
	for (i = 0; i < MAXLINE; i++) {
		(rand() & 1) ? upper(input_string, i) : lower(input_string, i);
	}
	
	printf("Output: %s \n", input_string);
}