blob: ff9f150f767f2cf644aac6d9b2308850625218e3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef SOURCE_H
#define SOURCE_H
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
char* source_get(char* arg);
char* source_get_from_stdin();
char* source_get_from_fpath(char* path);
#endif
|