bloboland
diff src/opt.h @ 0:e4818a3300b9
bloboland initial commit
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Sat, 15 Dec 2012 07:52:13 +0200 |
parents | |
children | cfe68befb7cc |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/opt.h Sat Dec 15 07:52:13 2012 +0200 1.3 @@ -0,0 +1,11 @@ 1.4 +#ifndef OPT_H_ 1.5 +#define OPT_H_ 1.6 + 1.7 +struct Options { 1.8 + int xsz, ysz; 1.9 + bool stereo; 1.10 +}; 1.11 + 1.12 +bool parse_opt(int argc, char **argv); 1.13 + 1.14 +#endif // OPT_H_