built-in jambase is packed now
[k8jam.git] / src / jambase.h
blob3fcc0a07508634505a44d5eb1ad6a486d5a8b7a5
1 /*
2 * Copyright 1993, 1995 Christopher Seiwald.
4 * This file is part of Jam - see jam.c for Copyright information.
5 */
6 /*
7 * jambase.h - declaration for the internal jambase
9 * The file Jambase is turned into a C array of strings in jambase.c
10 * so that it can be built in to the executable.
11 * This is the declaration for that array.
13 #ifndef JAMH_JAMBASE_H
14 #define JAMH_JAMBASE_H
17 //extern char *jambase[];
18 extern char **jambase;
19 extern unsigned char jambasepk[];
21 extern int jbpksize (void);
24 #endif