Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

tolower() Function not Working in C99

Tags:

c

tolower

cs50

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.

like image 523
ChapmIndustries Avatar asked Sep 27 '12 03:09

ChapmIndustries


2 Answers

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.

like image 182
Gabe Avatar answered Oct 18 '22 03:10

Gabe


tolower is defined in ctype.h. That is the file you should be including:

#include <ctype.h>

will solve your problem.

like image 20
epsalon Avatar answered Oct 18 '22 03:10

epsalon