This repository has been archived on 2022-12-11. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Othello/src/utils.c
2022-11-20 23:54:52 +01:00

7 lines
138 B
C

#include "../includes/utils.h"
void majuscule(char *lettre) {
if (*lettre >= 'a' && *lettre <= 'z') {
*lettre -= 32;
}
}