// https://github.com/dwyl/english-words #include #include #include #include #include #include //To Upper long count_lines(FILE *File) { // Accepts file as input char c; long line_counter = 0; while ((c = getc(File)) != EOF) { if (c == '\n') { line_counter++; // Increment when each line number is passed } } return(line_counter); // Return the found value } void randomize_case(char *a) { // Accepts a string as input for (int i = 0; i < strlen(a); i++) { // Loop through the length of the string int coin = randombytes_uniform(2); // Decide if the current character will be capitalized or lowercase if (coin == 1) { a[i] = toupper(a[i]); // Change current character into a capital } } } void generate_integers(void) { // Generates a string of random integers int length = 5; // TO-DO: Make random eventually for (int i=0; i