home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / octa21fs.zip / octave / kpathsea / concatn.h < prev    next >
C/C++ Source or Header  |  2000-01-15  |  1KB  |  34 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, 96 Karl Berry.
  7.  
  8. This library is free software; you can redistribute it and/or
  9. modify it under the terms of the GNU Library General Public
  10. License as published by the Free Software Foundation; either
  11. version 2 of the License, or (at your option) any later version.
  12.  
  13. This library 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 GNU
  16. Library General Public License for more details.
  17.  
  18. You should have received a copy of the GNU Library General Public
  19. License along with this library; if not, write to the Free Software
  20. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 DllImport string concatn PVAR1H(const_string str1);
  32.  
  33. #endif /* not KPATHSEA_CONCATN_H */
  34.