aboutsummaryrefslogtreecommitdiff
path: root/src/include/source.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/source.h')
-rw-r--r--src/include/source.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/source.h b/src/include/source.h
index 1fe9c41..07f83ed 100644
--- a/src/include/source.h
+++ b/src/include/source.h
@@ -3,8 +3,11 @@
#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