~ubuntu-branches/ubuntu/quantal/tiff/quantal

« back to all changes in this revision

Viewing changes to port/strcasecmp.c

  • Committer: Bazaar Package Importer
  • Author(s): Jay Berkenbilt
  • Date: 2010-06-18 21:28:11 UTC
  • mfrom: (10.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20100618212811-3t5mffcr8gpfpuel
Tags: 3.9.4-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: strcasecmp.c,v 1.2 2005/07/07 16:34:06 dron Exp $ */
 
1
/* $Id: strcasecmp.c,v 1.2.2.1 2010-06-08 18:50:43 bfriesen Exp $ */
2
2
 
3
3
/*
4
4
 * Copyright (c) 1987, 1993
48
48
                        return (0);
49
49
        return (tolower(*us1) - tolower(*--us2));
50
50
}
 
51
/*
 
52
 * Local Variables:
 
53
 * mode: c
 
54
 * c-basic-offset: 8
 
55
 * fill-column: 78
 
56
 * End:
 
57
 */