libc

A portable C Library
Log | Files | Refs | README

tolower.c (68B)


      1 #include "ctype.h"
      2 
      3 int
      4 (tolower)(int c)
      5 {
      6 	return (_Tolower[c]);
      7 }