From 1f956fc0c923d5ebf4c8ecc8de0fce3c4ca4698c Mon Sep 17 00:00:00 2001 From: Ian C Date: Sat, 20 Apr 2024 09:36:55 +0100 Subject: Initial checkin --- snbrowse.c | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 snbrowse.c (limited to 'snbrowse.c') 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 . + +*/ +#include +#include +#include +#include + +/* --------------------------------------------------------------------------- + TYPES AND GLOBALS + --------------------------------------------------------------------------- +*/ + + +/* --------------------------------------------------------------------------- + BASE ROUTINES + --------------------------------------------------------------------------- +*/ + +/* --------------------------------------------------------------------------- + MAIN + --------------------------------------------------------------------------- +*/ +int main(int argc, char *argv[]) +{ + return EXIT_SUCCESS; +} + +/* +vim: ai sw=4 ts=8 expandtab +*/ -- cgit v1.2.3