mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
12 lines
214 B
C
12 lines
214 B
C
#include <stdbool.h>
|
|
|
|
bool is_uppercase(const char *source)
|
|
{
|
|
for (int i = 0; source[i] != '\0'; i++)
|
|
{
|
|
if (source[i] >= 'a' && source[i] <= 'z')
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|