blob: 07f83edd8d0660cdebd65f6400835f31573532ad (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef SOURCE_H
#define SOURCE_H
#include "util.h"
/* Interpret any command line arguments to get the source. */
char* source_get(char* arg);
/* Get the source from stdin. */
char* source_get_from_stdin();
/* Get the source from a file path. */
char* source_get_from_fpath(char* path);
#endif
|