33 lines
865 B
C
33 lines
865 B
C
/* alisp.h: All includes
|
|
* Created: 2026-02-04
|
|
* Author: Aryadev Chavali
|
|
* License: See end of file
|
|
* Commentary:
|
|
*/
|
|
|
|
#ifndef ALISP_H
|
|
#define ALISP_H
|
|
|
|
#include <alisp/base.h>
|
|
#include <alisp/lisp.h>
|
|
#include <alisp/reader.h>
|
|
#include <alisp/stream.h>
|
|
#include <alisp/sv.h>
|
|
#include <alisp/symtable.h>
|
|
#include <alisp/vec.h>
|
|
|
|
#endif
|
|
|
|
/* Copyright (C) 2026 Aryadev Chavali
|
|
|
|
* 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 Version 2 for
|
|
* details.
|
|
|
|
* You may distribute and modify this code under the terms of the GNU General
|
|
* Public License Version 2, which you should have received a copy of along with
|
|
* this program. If not, please go to <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|