diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-04 23:58:10 +0200 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-10-04 23:58:10 +0200 |
commit | 13be5bd50238daa2be6b42104ba20aeea427655b (patch) | |
tree | 3e66986cd1ebbd98f06f61ff45127745fd54bc01 /src/common/stdin.h | |
parent | 3fff4bb3172f77b292b0c913749e81bedd3545f3 (diff) | |
download | blogc-13be5bd50238daa2be6b42104ba20aeea427655b.tar.gz blogc-13be5bd50238daa2be6b42104ba20aeea427655b.tar.bz2 blogc-13be5bd50238daa2be6b42104ba20aeea427655b.zip |
git-receiver: splitted and tested pre-receive input parser
Diffstat (limited to 'src/common/stdin.h')
-rw-r--r-- | src/common/stdin.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/common/stdin.h b/src/common/stdin.h new file mode 100644 index 0000000..ebf042d --- /dev/null +++ b/src/common/stdin.h @@ -0,0 +1,14 @@ +/* + * blogc: A blog compiler. + * Copyright (C) 2015-2016 Rafael G. Martins <rafael@rafaelmartins.eng.br> + * + * This program can be distributed under the terms of the BSD License. + * See the file LICENSE. + */ + +#ifndef _STDIN_H +#define _STDIN_H + +char* bc_stdin_read(void); + +#endif /* _STDIN_H */ |