Tagged Questions

1
vote
5answers
100 views

Optimized implementations of some functions from ctype.h

In one of my C application I am using, below functions from ctype.h : isalpha(), isspace(), ispunct(), tolower(). After profiling I see there are some bottlenecks in the calls of these ...