Reset parser in grace_set_project().
[grace.git] / src / bi.c
blob4a650846d1196848ef4b77cec6906210580e9f46
1 /*
2 * Grace - GRaphing, Advanced Computation and Exploration of data
3 *
4 * Home page: http://plasma-gate.weizmann.ac.il/Grace/
5 *
6 * Copyright (c) 1996-2000 Grace Development Team
7 *
8 * Maintained by Evgeny Stambulchik
9 *
11 * All Rights Reserved
13 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
23 * You should have received a copy of the GNU General Public License
24 * along with this program; if not, write to the Free Software
25 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 * Build info stuff
32 #include <config.h>
33 #include "buildinfo.h"
35 long bi_version_id(void)
37 return BI_VERSION_ID;
40 char *bi_version_string(void)
42 return BI_VERSION;
45 char *bi_system(void)
47 return BI_SYSTEM;
50 char *bi_date(void)
52 return BI_DATE;
55 char *bi_gui(void)
57 return BI_GUI;
60 #ifdef MOTIF_GUI
61 char *bi_gui_xbae(void)
63 return BI_GUI_XBAE;
65 #endif
67 char *bi_t1lib(void)
69 return BI_T1LIB;
72 char *bi_ccompiler(void)
74 return BI_CCOMPILER;
77 char *bi_home(void)
79 return GRACE_HOME;
82 char *bi_print_cmd(void)
84 return GRACE_PRINT_CMD;
87 char *bi_editor(void)
89 return GRACE_EDITOR;
92 char *bi_helpviewer(void)
94 return GRACE_HELPVIEWER;