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.
klish/lub/string/string_free.c

15 lines
242 B

/*
* string_free.c
*/
#include "private.h"
#include <stdlib.h>
/*--------------------------------------------------------- */
void lub_string_free(char *ptr)
{
free(ptr);
}
/*--------------------------------------------------------- */