~ubuntu-branches/ubuntu/trusty/lifelines/trusty

« back to all changes in this revision

Viewing changes to src/stdlib/fpattern.c

  • Committer: Bazaar Package Importer
  • Author(s): Felipe Augusto van de Wiel (faw)
  • Date: 2007-05-23 23:49:53 UTC
  • mfrom: (3.1.3 edgy)
  • Revision ID: james.westby@ubuntu.com-20070523234953-ogno9rnbmth61i7p
Tags: 3.0.50-2etch1
* Changing docs/ll-reportmanual.xml and docs/ll-userguide.xml to fix
  documentation build problems (Closes: #418347).

* lifelines-reports
  - Adding a dependency to lifelines >= 3.0.50 to prevent file conflict.
    (Closes: #405500).

* Updating French translation. Thanks to Bernard Adrian. (Closes: #356671).

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
 
138
138
/* Local function macros */
139
139
 
140
 
#if UNIX
141
 
#define lowercase(c)    (c)
142
 
#else /*DOS*/
 
140
/* Warning,  while this code was originally filename search code
 
141
 * which was case insensitive on DOS and case Sensitive on UNIX
 
142
 * its being used for name searching and should behave the same everywhere
 
143
 */
 
144
/* #if UNIX */
 
145
/* #define lowercase(c) (c) */
 
146
/* #else */ /*DOS*/ 
143
147
#define lowercase(c)    tolower(c)
144
 
#endif
 
148
/* #endif */
145
149
 
146
150
 
147
151
/*-----------------------------------------------------------------------------