home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 368_01 / gnulibas.zoo / gnulib.h < prev    next >
C/C++ Source or Header  |  1990-09-19  |  2KB  |  53 lines

  1. /* gnulib.h - definitions and prototypes for the GNUish MS-DOS library
  2.    Copyright (C) 1990 by Thorsten Ohl, td12@ddagsi3.bitnet
  3.  
  4.    This program is free software; you can redistribute it and/or modify
  5.    it under the terms of the GNU General Public License as published by
  6.    the Free Software Foundation; either version 1, or (at your option)
  7.    any later version.
  8.  
  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.
  13.  
  14.    You should have received a copy of the GNU General Public License
  15.    along with this program; if not, write to the Free Software
  16.    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18.    $Header: e:/gnu/lib/RCS/gnulib.h 1.0 90/09/11 01:55:29 tho Exp $
  19.  */
  20.  
  21. /* Memory allocation: (xmalloc.c, xrealloc.c)  */
  22.  
  23. extern void *xmalloc (size_t bytes);
  24. extern void *xrealloc (void *buffer, size_t bytes);
  25.  
  26.  
  27. /* Error messages: (error.c) */
  28.  
  29. extern void error (int status, int errnum, char *message, ...);
  30.  
  31.  
  32. /* Globbing: (glob.c)  */
  33.  
  34. extern char **glob_filename (char *pathname);
  35. extern char **glob_vector (char *pat, char *dir);
  36. extern int glob_match (char *pattern, char *text, int dot_special);
  37. extern int glob_pattern_p (char *pattern);
  38.  
  39.  
  40. /* Prettier filenames: (_cwild.c)  */
  41.  
  42. extern char *msdos_format_filename (char *name);
  43.  
  44.  
  45.  
  46. /* 
  47.  * Local Variables:
  48.  * mode:C
  49.  * ChangeLog:ChangeLog
  50.  * compile-command:make
  51.  * End:
  52.  */
  53.