string_free.c 242 B

1234567891011121314
  1. /*
  2. * string_free.c
  3. */
  4. #include "private.h"
  5. #include <stdlib.h>
  6. /*--------------------------------------------------------- */
  7. void lub_string_free(char *ptr)
  8. {
  9. free(ptr);
  10. }
  11. /*--------------------------------------------------------- */