1 /****************************************************************************
2  * Copyright (C) 2008 by Matteo Franchin                                    *
3  *                                                                          *
4  * This file is part of Box.                                                *
5  *                                                                          *
6  *   Box is free software: you can redistribute it and/or modify it         *
7  *   under the terms of the GNU Lesser General Public License as published  *
8  *   by the Free Software Foundation, either version 3 of the License, or   *
9  *   (at your option) any later version.                                    *
10  *                                                                          *
11  *   Box 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 Lesser General Public License for more details.                    *
15  *                                                                          *
16  *   You should have received a copy of the GNU Lesser General Public       *
17  *   License along with Box.  If not, see <http://www.gnu.org/licenses/>.   *
18  ****************************************************************************/
19 
20 /** @file bltinstr.h
21  * @brief BuiLTIN implementation of the STRing object.
22  *
23  * Here we provide the implementation of the Str object, used for in Box
24  * for storing strings which can be concatenated and resized easily.
25  */
26 
27 #ifndef _BOX_BLTINSTR_H
28 #  define _BOX_BLTINSTR_H
29 
30 #  include <stdlib.h>
31 
32 #  include <box/types.h>
33 #  include <box/compiler.h>
34 
35 void Bltin_Str_Register_Procs(BoxCmp *c);
36 
37 BoxTask Bltin_Str_Init(void);
38 
39 void Bltin_Str_Destroy(void);
40 
41 #endif
42