tolower() Function not Working in C99

ChapmIndustries picture ChapmIndustries · Sep 27, 2012 · Viewed 11.2k times · Source

I am using the CS50 appliance from Harvard and trying to make a character lowercase. I am trying to use the tolower() function but when I try to use it I get the message implicit declaration of function 'tolower' is invalid in C99. Anyone care to elaborate on why I would be getting this message. I have included stdio.h as well as string.h.

Answer

Gabe picture Gabe · Sep 27, 2012

To use tolower in C99, use #include <ctype.h>

It is not an I/O function and it doesn't operate on strings (it operates on characters), so it's not in stdio or string.