cppreference.com > Standard C String and Character > islower
islower
Syntax:
  #include <ctype.h>
  int islower( int ch );
  

The islower() function returns non-zero if its argument is a lowercase letter. Otherwise, zero is returned.