update stuff

This commit is contained in:
Maix0 2024-05-20 00:35:39 +02:00
parent 5973022688
commit 544ed8b045
194 changed files with 2060 additions and 1464 deletions

View file

@ -10,10 +10,10 @@
/* */
/* ************************************************************************** */
#include "me/char/islower.h"
#include "me/char/toupper.h"
#include "me/char/char.h"
#include "me/char/char.h"
bool me_toupper(char chr)
char me_toupper(char chr)
{
if (me_islower(chr))
return (chr - ('a' - 'A'));