You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
194 B

  1. /* LINTLIBRARY */
  2. #include <stdio.h>
  3. #include "util.h"
  4. /*
  5. * util_strsav -- save a copy of a string
  6. */
  7. char *
  8. util_strsav(char const *s)
  9. {
  10. return strcpy(ALLOC(char, strlen(s)+1), s);
  11. }