142 lines
3.7 KiB
C
142 lines
3.7 KiB
C
/* Header for GNU gettext libiberty
|
|
Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2, or (at your option)
|
|
any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software Foundation,
|
|
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
|
|
|
#ifndef _SYSTEM_H
|
|
#define _SYSTEM_H 1
|
|
|
|
#ifndef PARAMS
|
|
# if __STDC__
|
|
# define PARAMS(args) args
|
|
# else
|
|
# define PARAMS(args) ()
|
|
# endif
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
|
|
#if defined STDC_HEADERS
|
|
# include <stdlib.h>
|
|
#else
|
|
# ifdef HAVE_MALLOC_H
|
|
# include <malloc.h>
|
|
# endif
|
|
unsigned long strtoul ();
|
|
#endif
|
|
|
|
/* Prototypes for helper functions. */
|
|
extern FILE *open_po_file PARAMS ((const char *__input_name,
|
|
char **__file_name));
|
|
|
|
/* Wrapper functions with error checking for standard functions. */
|
|
extern char *xgetcwd PARAMS ((void));
|
|
extern void *xmalloc PARAMS ((size_t __n));
|
|
extern void *xrealloc PARAMS ((void *__p, size_t __n));
|
|
extern char *xstrdup PARAMS ((const char *__string));
|
|
extern char *stpcpy PARAMS ((char *__dst, const char *__src));
|
|
extern char *stpncpy PARAMS ((char *__dst, const char *__src, size_t __n));
|
|
extern size_t parse_printf_format PARAMS ((const char *__fmt, size_t __n,
|
|
int *__argtypes));
|
|
extern int asprintf PARAMS ((char **, const char *, ...));
|
|
extern int strcasecmp PARAMS ((const char *__s1, const char *__s2));
|
|
extern int strncasecmp PARAMS ((const char *__s1, const char *__s2,
|
|
size_t __n));
|
|
extern char *strstr PARAMS ((const char *__str, const char *__sub));
|
|
|
|
#if STDC_HEADERS || HAVE_STRING_H
|
|
# include <string.h>
|
|
# if !STDC_HEADERS && HAVE_MEMORY_H
|
|
# include <memory.h>
|
|
# endif
|
|
#else
|
|
# include <strings.h>
|
|
#endif
|
|
#if !HAVE_MEMCPY
|
|
# ifndef memcpy
|
|
# define memcpy(D, S, N) bcopy ((S), (D), (N))
|
|
# endif
|
|
#endif
|
|
#if !HAVE_STRCHR
|
|
# ifndef strchr
|
|
# define strchr index
|
|
# endif
|
|
#endif
|
|
|
|
#if 0
|
|
#ifdef __GNUC__
|
|
# ifndef alloca
|
|
# define alloca __builtin_alloca
|
|
# endif
|
|
#else
|
|
# if HAVE_ALLOCA_H
|
|
# include <alloca.h>
|
|
# else
|
|
# ifdef _AIX
|
|
#pragma alloca
|
|
# else
|
|
# ifdef __hpux /* This section must match that of bison generated files. */
|
|
# ifdef __cplusplus
|
|
extern "C" void *alloca (unsigned int);
|
|
# else /* not __cplusplus */
|
|
void *alloca ();
|
|
# endif /* not __cplusplus */
|
|
# else /* not __hpux */
|
|
# ifndef alloca
|
|
char *alloca ();
|
|
# endif
|
|
# endif /* __hpux */
|
|
# endif
|
|
# endif
|
|
#endif
|
|
#endif
|
|
|
|
/* Before we define the following symbols we get the <limits.h> file if
|
|
available since otherwise we get redefinitions on some systems. */
|
|
#if HAVE_LIMITS_H
|
|
# include <limits.h>
|
|
#endif
|
|
|
|
#ifndef MAX
|
|
# if __STDC__ && defined __GNUC__ && __GNUC__ >= 2
|
|
# define MAX(a,b) (__extension__ \
|
|
({__typeof__ (a) _a = (a); \
|
|
__typeof__ (b) _b = (b); \
|
|
_a > _b ? _a : _b; \
|
|
}))
|
|
# else
|
|
# define MAX(a,b) ((a) > (b) ? (a) : (b))
|
|
# endif
|
|
#endif
|
|
|
|
/* Some systems do not define EXIT_*, even with STDC_HEADERS. */
|
|
#ifndef EXIT_SUCCESS
|
|
# define EXIT_SUCCESS 0
|
|
#endif
|
|
#ifndef EXIT_FAILURE
|
|
# define EXIT_FAILURE 1
|
|
#endif
|
|
|
|
|
|
/* When not using the GNU libc we use the basename implementation we
|
|
provide here. */
|
|
#ifndef __GNU_LIBRARY__
|
|
extern char *gnu_basename PARAMS ((const char *));
|
|
# define basename(Arg) gnu_basename (Arg)
|
|
#endif
|
|
|
|
#endif
|