diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-04-20 09:36:55 +0100 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-04-20 09:36:55 +0100 |
commit | 1f956fc0c923d5ebf4c8ecc8de0fce3c4ca4698c (patch) | |
tree | 9c4423fd9f8cd5918296127d9a089feec5473e40 /snbrowse.c |
Diffstat (limited to 'snbrowse.c')
-rw-r--r-- | snbrowse.c | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/snbrowse.c b/snbrowse.c new file mode 100644 index 0000000..e7cb24b --- /dev/null +++ b/snbrowse.c @@ -0,0 +1,48 @@ +/* + + snbrowse - Simply browser for Spectrum Next + + Copyright (C) 2024 Ian Cowburn (ianc@noddybox.co.uk) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see <http://www.gnu.org/licenses/>. + +*/ +#include <stdlib.h> +#include <stdio.h> +#include <string.h> +#include <stdarg.h> + +/* --------------------------------------------------------------------------- + TYPES AND GLOBALS + --------------------------------------------------------------------------- +*/ + + +/* --------------------------------------------------------------------------- + BASE ROUTINES + --------------------------------------------------------------------------- +*/ + +/* --------------------------------------------------------------------------- + MAIN + --------------------------------------------------------------------------- +*/ +int main(int argc, char *argv[]) +{ + return EXIT_SUCCESS; +} + +/* +vim: ai sw=4 ts=8 expandtab +*/ |