Changeset 609 for branches/GNU/src/binutils/intl/gettextP.h
- Timestamp:
- Aug 16, 2003, 6:59:22 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GNU/src/binutils/intl/gettextP.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.1.1.2
r608 r609 1 1 /* 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. 3 4 4 5 This program is free software; you can redistribute it and/or modify … … 31 32 #endif 32 33 34 #ifndef internal_function 35 # define internal_function 36 #endif 37 33 38 #ifndef W 34 39 # define W(flag, data) ((flag) ? SWAP (data) : (data)) … … 36 41 37 42 43 #ifdef _LIBC 44 # include <byteswap.h> 45 # define SWAP(i) bswap_32 (i) 46 #else 38 47 static nls_uint32 SWAP PARAMS ((nls_uint32 i)); 39 48 … … 44 53 return (i << 24) | ((i & 0xff00) << 8) | ((i >> 8) & 0xff00) | (i >> 24); 45 54 } 55 #endif 46 56 47 57 … … 49 59 { 50 60 const char *data; 61 int use_mmap; 62 size_t mmap_size; 51 63 int must_swap; 52 64 nls_uint32 nstrings; … … 66 78 struct loaded_l10nfile *_nl_find_domain PARAMS ((const char *__dirname, 67 79 char *__locale, 68 const char *__domainname)); 69 void _nl_load_domain PARAMS ((struct loaded_l10nfile *__domain)); 80 const char *__domainname)) 81 internal_function; 82 void _nl_load_domain PARAMS ((struct loaded_l10nfile *__domain)) 83 internal_function; 84 void _nl_unload_domain PARAMS ((struct loaded_domain *__domain)) 85 internal_function; 70 86 71 87 /* @@ begin of epilog @@ */ -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.