#ifndef GETOUTPUT_H #define GETOUTPUT_H 1 #include /* This will return a buffer allocated with malloc. Remember to free it! */ char* getoutput(const char *command); /* This will return a buffer allocated with malloc. Remember to free it! */ char **split(char *tosplit, size_t *line_count); #endif