utility.h 556 B

12345678910111213141516171819
  1. /*
  2. * \brief Utility to concat ans split strings.
  3. * implemented in utility.c
  4. *
  5. * \AUTHOR: Serena Pallecchi student of Computer Science University of Pisa (Italy)
  6. * Commission from Faunalia Pontedera (PI) www.faunalia.it
  7. *
  8. * This program is free software under the GPL (>=v2)
  9. * Read the COPYING file that comes with GRASS for details.
  10. *
  11. */
  12. /*if occurred an error returns NULL */
  13. char *concatena(const char *, const char *);
  14. /*if occurred an error returns NULL */
  15. char **split_arg(char *, char, long *);