This commit is contained in:
hugodu69
2019-12-13 21:15:07 +01:00
parent 9396471afe
commit 48c0ec9108
2 changed files with 6 additions and 4 deletions

View File

@@ -29,7 +29,7 @@
** }
** char touppercase(unsigned int i, char c)
** {
** if (i < 3)
** if (i < 3 && c >= 'a' && c <= 'z')
** c -= 32;
** return (c);
** }