From ea0423321f59a1208b2194deb3bf88d6897faefe Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 26 Mar 2004 06:43:45 +0000 Subject: Update. 2004-03-25 Ulrich Drepper * iconvdata/utf-7.c: Remove inline from isdirect, isxdirect, and isxbase64. --- iconvdata/utf-7.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'iconvdata/utf-7.c') diff --git a/iconvdata/utf-7.c b/iconvdata/utf-7.c index ee2ae441b0..6943833a67 100644 --- a/iconvdata/utf-7.c +++ b/iconvdata/utf-7.c @@ -1,5 +1,5 @@ /* Conversion module for UTF-7. - Copyright (C) 2000-2002, 2003 Free Software Foundation, Inc. + Copyright (C) 2000-2002, 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Bruno Haible , 2000. @@ -50,7 +50,7 @@ static const unsigned char direct_tab[128/8] = 0xfe, 0xff, 0xff, 0x07, 0xfe, 0xff, 0xff, 0x07 }; -static inline int +static int isdirect (uint32_t ch) { return (ch < 128 && ((direct_tab[ch >> 3] >> (ch & 7)) & 1)); @@ -68,7 +68,7 @@ static const unsigned char xdirect_tab[128/8] = 0xff, 0xff, 0xff, 0xef, 0xff, 0xff, 0xff, 0x3f }; -static inline int +static int isxdirect (uint32_t ch) { return (ch < 128 && ((xdirect_tab[ch >> 3] >> (ch & 7)) & 1)); @@ -85,7 +85,7 @@ static const unsigned char xbase64_tab[128/8] = 0xfe, 0xff, 0xff, 0x07, 0xfe, 0xff, 0xff, 0x07 }; -static inline int +static int isxbase64 (uint32_t ch) { return (ch < 128 && ((xbase64_tab[ch >> 3] >> (ch & 7)) & 1)); -- cgit v1.2.3