~ubuntu-branches/ubuntu/maverick/texinfo/maverick

« back to all changes in this revision

Viewing changes to lib/strcasecmp.c

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2005-10-28 15:10:30 UTC
  • mto: (2.1.1 dapper) (3.1.4 hardy)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051028151030-9nsf2s2k2z3fktjt
Tags: upstream-4.8
ImportĀ upstreamĀ versionĀ 4.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
# define LENGTH_LIMIT_EXPR(Expr) 0
30
30
#endif
31
31
 
32
 
#include <sys/types.h>
 
32
#include <stddef.h>
33
33
#include <ctype.h>
34
34
 
35
35
#define TOLOWER(Ch) (isupper (Ch) ? tolower (Ch) : (Ch))