home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / octave-1.1.1p1-base.tgz / octave-1.1.1p1-base.tar / fsf / octave / kpathsea / concatn.h < prev    next >
C/C++ Source or Header  |  1993-09-13  |  1KB  |  36 lines

  1. /* concatn.h: concatenate a variable number of strings.
  2.    This is a separate include file only because I don't see the point of
  3.    having every source file include <c-vararg.h>.  The declarations for
  4.    the other concat routines are in lib.h.
  5.  
  6. Copyright (C) 1993 Karl Berry.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2, or (at your option)
  11. any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program; if not, write to the Free Software
  20. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  21.  
  22. #ifndef KPATHSEA_CONCATN_H
  23. #define KPATHSEA_CONCATN_H
  24.  
  25. #include <kpathsea/c-proto.h>
  26. #include <kpathsea/c-vararg.h>
  27. #include <kpathsea/types.h>
  28.  
  29. /* Concatenate a null-terminated list of strings and return the result
  30.    in malloc-allocated memory.  */
  31. extern string concatn PVAR1H(const_string str1);
  32.  
  33. #endif /* not KPATHSEA_CONCATN_H */
  34.  
  35.  
  36.