~ubuntu-branches/ubuntu/trusty/grub2/trusty

« back to all changes in this revision

Viewing changes to grub-core/gnulib/mbswidth.h

  • Committer: Package Import Robot
  • Author(s): Colin Watson
  • Date: 2014-01-16 15:18:04 UTC
  • mfrom: (17.6.38 experimental)
  • Revision ID: package-import@ubuntu.com-20140116151804-3foouk7fpqcq3sxx
Tags: 2.02~beta2-2
* Convert patch handling to git-dpm.
* Add bi-endian support to ELF parser (Tomohiro B Berry).
* Adjust restore_mkdevicemap.patch to mark get_kfreebsd_version as static,
  to appease "gcc -Werror=missing-prototypes".
* Cherry-pick from upstream:
  - Change grub-macbless' manual page section to 8.
* Install grub-glue-efi, grub-macbless, grub-render-label, and
  grub-syslinux2cfg.
* grub-shell: Pass -no-pad to xorriso when building floppy images.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Determine the number of screen columns needed for a string.
 
2
   Copyright (C) 2000-2004, 2007, 2009-2013 Free Software Foundation, Inc.
 
3
 
 
4
   This program is free software: you can redistribute it and/or modify
 
5
   it under the terms of the GNU General Public License as published by
 
6
   the Free Software Foundation; either version 3 of the License, or
 
7
   (at your option) any later version.
 
8
 
 
9
   This program is distributed in the hope that it will be useful,
 
10
   but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
   GNU General Public License for more details.
 
13
 
 
14
   You should have received a copy of the GNU General Public License
 
15
   along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
16
 
 
17
#include <stddef.h>
 
18
 
 
19
/* Avoid a clash of our mbswidth() with a function of the same name defined
 
20
   in UnixWare 7.1.1 <wchar.h>.  We need this #include before the #define
 
21
   below.
 
22
   However, we don't want to #include <wchar.h> on all platforms because
 
23
   - Tru64 with Desktop Toolkit C has a bug: <stdio.h> must be included before
 
24
     <wchar.h>.
 
25
   - BSD/OS 4.1 has a bug: <stdio.h> and <time.h> must be included before
 
26
     <wchar.h>.  */
 
27
#if HAVE_DECL_MBSWIDTH_IN_WCHAR_H
 
28
# include <wchar.h>
 
29
#endif
 
30
 
 
31
 
 
32
#ifdef __cplusplus
 
33
extern "C" {
 
34
#endif
 
35
 
 
36
 
 
37
/* Optional flags to influence mbswidth/mbsnwidth behavior.  */
 
38
 
 
39
/* If this bit is set, return -1 upon finding an invalid or incomplete
 
40
   character.  Otherwise, assume invalid characters have width 1.  */
 
41
#define MBSW_REJECT_INVALID 1
 
42
 
 
43
/* If this bit is set, return -1 upon finding a non-printable character.
 
44
   Otherwise, assume unprintable characters have width 0 if they are
 
45
   control characters and 1 otherwise.  */
 
46
#define MBSW_REJECT_UNPRINTABLE 2
 
47
 
 
48
/* If this bit is set \0 is treated as the end of string.
 
49
   Otherwise it's treated as a normal one column width character.  */
 
50
#define MBSW_STOP_AT_NUL 4
 
51
 
 
52
/* Returns the number of screen columns needed for STRING.  */
 
53
#define mbswidth gnu_mbswidth  /* avoid clash with UnixWare 7.1.1 function */
 
54
extern int mbswidth (const char *string, int flags);
 
55
 
 
56
/* Returns the number of screen columns needed for the NBYTES bytes
 
57
   starting at BUF.  */
 
58
extern int mbsnwidth (const char *buf, size_t nbytes, int flags);
 
59
 
 
60
 
 
61
#ifdef __cplusplus
 
62
}
 
63
#endif