~ubuntu-branches/ubuntu/hardy/dbacl/hardy

« back to all changes in this revision

Viewing changes to src/mbw.h

  • Committer: Bazaar Package Importer
  • Author(s): Zak B. Elep
  • Date: 2006-03-26 22:35:35 UTC
  • mfrom: (1.1.2 upstream) (2.1.1 etch)
  • Revision ID: james.westby@ubuntu.com-20060326223535-bo3m96paoczzz59n
Tags: 1.12-1
* New upstream release
  + `dbacl -V' now exits with status 0.  (Closes: #339394)
* debian/rules:
  + Upstream now fixes TREC file permissions.  However some new scripts got
    added, so this time its a a+x fix instead of a-x.
* debian/patches:
  + Removed 10_slang2_conversion.patch from Clint, now merged upstream.
  + Updated 20_autotools_update.patch .

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
#define mbw_isalpha(c) iswalpha(c)
30
30
#define mbw_isgraph(c) iswgraph(c)
31
31
#define mbw_isspace(c) iswspace(c)
 
32
#define mbw_isblank(c) iswblank(c)
32
33
#define mbw_iscntrl(c) iswcntrl(c)
33
34
#define mbw_ispunct(c) iswpunct(c)
34
35
#define mbw_isxdigit(c) iswxdigit(c)
75
76
#define mbw_isalpha(c) isalpha((int)(c))
76
77
#define mbw_isgraph(c) isgraph((int)(c))
77
78
#define mbw_isspace(c) isspace((int)(c))
 
79
#define mbw_isblank(c) isblank((int)(c))
78
80
#define mbw_iscntrl(c) iscntrl((int)(c))
79
81
#define mbw_ispunct(c) ispunct((int)(c))
80
82
#define mbw_isxdigit(c) isxdigit((int)(c))