home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
gnat-2.06-src.tgz
/
tar.out
/
fsf
/
gnat
/
ada
/
a-adaint.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
3KB
|
57 lines
/****************************************************************************/
/* */
/* GNAT COMPILER COMPONENTS */
/* */
/* A - A D A I N T */
/* */
/* $Revision: 1.5 $ */
/* */
/* C Header File */
/* */
/* Copyright (c) 1992,1993,1994,1995 NYU, All Rights Reserved */
/* */
/* GNAT is free software; you can redistribute it and/or modify it under */
/* terms of the GNU General Public License as published by the Free Soft- */
/* ware Foundation; either version 2, or (at your option) any later ver- */
/* sion. GNAT is distributed in the hope that it will be useful, but WITH- */
/* OUT 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 distributed with GNAT; see file COPYING. If not, write */
/* to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
/* */
/****************************************************************************/
/* Add prototype support. */
#ifndef PROTO
#if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
#define PROTO(ARGS) ARGS
#else
#define PROTO(ARGS) ()
#endif
#endif
extern void to_gm_time \
PROTO ((time_t *, int *, int *, int *, int *, int *, int *));
extern int Get_Maximum_File_Name_Length PROTO ((void));
extern char Get_Switch_Character PROTO ((void));
extern int Get_Switches_Case_Sensitive PROTO ((void));
extern int Get_File_Names_Case_Sensitive PROTO ((void));
extern char Get_Default_Identifier_Character_Set PROTO ((void));
extern void Get_Object_Suffix PROTO ((char *));
extern int open_new PROTO ((char *, int));
extern int open_read PROTO ((char *, int));
extern int open_create PROTO ((char *, int));
extern long file_length PROTO ((int));
extern time_t file_time_name PROTO ((char *));
extern time_t file_time_fd PROTO ((int));
extern void get_env_value_ptr \
PROTO ((char *, int *, char **));
extern int is_regular_file PROTO ((char *));
extern int portable_spawn PROTO ((char *[]));
extern char *locate_exec PROTO ((char *, char *));
extern void maybe_glob_args PROTO ((int *, char ***));
/* portable definition of strdup which is not available on all systems */
#define xstrdup(s) strcpy ((char *) malloc (strlen(s)+1), s)