1 /********************************************************************/
2 /*                                                                  */
3 /*  s7   Seed7 interpreter                                          */
4 /*  Copyright (C) 1990 - 2010  Thomas Mertes                        */
5 /*                                                                  */
6 /*  This program is free software; you can redistribute it and/or   */
7 /*  modify it under the terms of the GNU General Public License as  */
8 /*  published by the Free Software Foundation; either version 2 of  */
9 /*  the License, or (at your option) any later version.             */
10 /*                                                                  */
11 /*  This program is distributed in the hope that it will be useful, */
12 /*  but WITHOUT ANY WARRANTY; without even the implied warranty of  */
13 /*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   */
14 /*  GNU General Public License for more details.                    */
15 /*                                                                  */
16 /*  You should have received a copy of the GNU General Public       */
17 /*  License along with this program; if not, write to the           */
18 /*  Free Software Foundation, Inc., 51 Franklin Street,             */
19 /*  Fifth Floor, Boston, MA  02110-1301, USA.                       */
20 /*                                                                  */
21 /*  Module: Library                                                 */
22 /*  File: seed7/src/bstlib.h                                        */
23 /*  Changes: 2007, 2010  Thomas Mertes                              */
24 /*  Content: All primitive actions for the byte string type.        */
25 /*                                                                  */
26 /********************************************************************/
27 
28 objectType bst_append   (listType arguments);
29 objectType bst_cat      (listType arguments);
30 objectType bst_cmp      (listType arguments);
31 objectType bst_cpy      (listType arguments);
32 objectType bst_create   (listType arguments);
33 objectType bst_destr    (listType arguments);
34 objectType bst_empty    (listType arguments);
35 objectType bst_eq       (listType arguments);
36 objectType bst_hashcode (listType arguments);
37 objectType bst_idx      (listType arguments);
38 objectType bst_lng      (listType arguments);
39 objectType bst_ne       (listType arguments);
40 objectType bst_parse1   (listType arguments);
41 objectType bst_str      (listType arguments);
42 objectType bst_value    (listType arguments);
43