aboutsummaryrefslogtreecommitdiff
path: root/src/include/source.h
diff options
context:
space:
mode:
authorc+12023-11-17 18:58:54 -0500
committerc+12023-11-17 18:58:54 -0500
commit2cc68205a1c0b746ad405607940e7183c4fb09b0 (patch)
treedd16a65479194da364929c71a22d6fb01b58f36a /src/include/source.h
parent7be0923d486cd6ed2e304d3673146563ad677ea7 (diff)
Cleaned up.
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