mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 19:19:07 +01:00
13 lines
214 B
C
13 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;
|
||
|
}
|