This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <time.h> | |
#include <stdint.h> | |
#include <sys/types.h> | |
#include <stdio.h> | |
#include <ctype.h> | |
/* | |
Character-by-character comparisons for equality and lowercasing. | |
Custom functions vs tolower. | |
Spoiler: lookup table is the fastest. |