~aghuloum/ikarus/ikarus.dev

1578 by Abdulaziz Ghuloum
scheme-script is now its own program; it does not fork and exec
1
/*
2
 *  Ikarus Scheme -- A compiler for R6RS Scheme.
3
 *  Copyright (C) 2006,2007,2008  Abdulaziz Ghuloum
4
 *  
5
 *  This program is free software: you can redistribute it and/or modify
6
 *  it under the terms of the GNU General Public License version 3 as
7
 *  published by the Free Software Foundation.
8
 *  
9
 *  This program is distributed in the hope that it will be useful, but
10
 *  WITHOUT ANY WARRANTY; without even the implied warranty of
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12
 *  General Public License for more details.
13
 *  
14
 *  You should have received a copy of the GNU General Public License
15
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
 */
17
18
19
20
#ifndef IKARUS_MAIN
21
#define IKARUS_MAIN
22
int ikarus_main(int argc, char** argv, char* boot_file);
23
#endif