~ubuntu-branches/ubuntu/maverick/gettext/maverick

« back to all changes in this revision

Viewing changes to gettext-tools/gnulib-lib/mbchar.c

  • Committer: Colin Watson
  • Date: 2010-08-01 21:36:08 UTC
  • mfrom: (2.1.10 sid)
  • Revision ID: cjwatson@canonical.com-20100801213608-yy7vkm8lpatep3ci
merge from Debian 0.18.1.1-1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Copyright (C) 2001, 2006 Free Software Foundation, Inc.
 
1
/* Copyright (C) 2001, 2006, 2009, 2010 Free Software Foundation, Inc.
2
2
 
3
3
   This program is free software: you can redistribute it and/or modify
4
4
   it under the terms of the GNU General Public License as published by
25
25
/* Bit table of characters in the ISO C "basic character set".  */
26
26
const unsigned int is_basic_table [UCHAR_MAX / 32 + 1] =
27
27
{
28
 
  0x00001a00,           /* '\t' '\v' '\f' */
29
 
  0xffffffef,           /* ' '...'#' '%'...'?' */
30
 
  0xfffffffe,           /* 'A'...'Z' '[' '\\' ']' '^' '_' */
31
 
  0x7ffffffe            /* 'a'...'z' '{' '|' '}' '~' */
 
28
  0x00001a00,           /* '\t' '\v' '\f' */
 
29
  0xffffffef,           /* ' '...'#' '%'...'?' */
 
30
  0xfffffffe,           /* 'A'...'Z' '[' '\\' ']' '^' '_' */
 
31
  0x7ffffffe            /* 'a'...'z' '{' '|' '}' '~' */
32
32
  /* The remaining bits are 0.  */
33
33
};
34
34