#ifndef _STRING_HELPERS #define _STRING_HELPERS 1 /* Returns a pointer which will need to be freed */ char **split(char *starting_string, size_t *length); /* Move data to the right by the specified amount */ void move_right(char *start, int distance); void move_left(char *start, int distance); #endif