Ignore:
Timestamp:
Aug 16, 2003, 6:59:22 PM (22 years ago)
Author:
bird
Message:

binutils v2.14 - offical sources.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/binutils/intl/gettextP.h

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r608 r609  
    11/* Header describing internals of gettext library
    2    Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
     2   Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
     3   Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995.
    34
    45   This program is free software; you can redistribute it and/or modify
     
    3132#endif
    3233
     34#ifndef internal_function
     35# define internal_function
     36#endif
     37
    3338#ifndef W
    3439# define W(flag, data) ((flag) ? SWAP (data) : (data))
     
    3641
    3742
     43#ifdef _LIBC
     44# include <byteswap.h>
     45# define SWAP(i) bswap_32 (i)
     46#else
    3847static nls_uint32 SWAP PARAMS ((nls_uint32 i));
    3948
     
    4453  return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24);
    4554}
     55#endif
    4656
    4757
     
    4959{
    5060  const char *data;
     61  int use_mmap;
     62  size_t mmap_size;
    5163  int must_swap;
    5264  nls_uint32 nstrings;
     
    6678struct loaded_l10nfile *_nl_find_domain PARAMS ((const char *__dirname,
    6779                                                 char *__locale,
    68                                                  const char *__domainname));
    69 void _nl_load_domain PARAMS ((struct loaded_l10nfile *__domain));
     80                                                 const char *__domainname))
     81     internal_function;
     82void _nl_load_domain PARAMS ((struct loaded_l10nfile *__domain))
     83     internal_function;
     84void _nl_unload_domain PARAMS ((struct loaded_domain *__domain))
     85     internal_function;
    7086
    7187/* @@ begin of epilog @@ */
Note: See TracChangeset for help on using the changeset viewer.