SphinxBase
0.6
Main Page
Related Pages
Data Structures
Files
File List
Globals
strfuncs.h
Go to the documentation of this file.
1
/* -*- c-basic-offset: 4; indent-tabs-mode: nil -*- */
2
/* ====================================================================
3
* Copyright (c) 1995-2004 Carnegie Mellon University. All rights
4
* reserved.
5
*
6
* Redistribution and use in source and binary forms, with or without
7
* modification, are permitted provided that the following conditions
8
* are met:
9
*
10
* 1. Redistributions of source code must retain the above copyright
11
* notice, this list of conditions and the following disclaimer.
12
*
13
* 2. Redistributions in binary form must reproduce the above copyright
14
* notice, this list of conditions and the following disclaimer in
15
* the documentation and/or other materials provided with the
16
* distribution.
17
*
18
* This work was supported in part by funding from the Defense Advanced
19
* Research Projects Agency and the National Science Foundation of the
20
* United States of America, and the CMU Sphinx Speech Consortium.
21
*
22
* THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND
23
* ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
24
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY
26
* NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
27
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
32
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
*
34
* ====================================================================
35
*
36
*/
42
#ifndef __SB_STRFUNCS_H__
43
#define __SB_STRFUNCS_H__
44
45
#include <stdarg.h>
46
47
/* Win32/WinCE DLL gunk */
48
#include <sphinxbase/sphinxbase_export.h>
49
#include <
sphinxbase/prim_type.h
>
50
51
52
#ifdef __cplusplus
53
extern
"C"
{
54
#endif
55
#if 0
56
/* Fool Emacs. */
57
}
58
#endif
59
64
SPHINXBASE_EXPORT
65
char
*
string_join
(
const
char
*base, ...);
66
70
enum
string_edge_e
{
71
STRING_START
,
72
STRING_END
,
73
STRING_BOTH
74
};
75
82
SPHINXBASE_EXPORT
83
char
*
string_trim
(
char
*
string
,
enum
string_edge_e
which);
84
92
SPHINXBASE_EXPORT
93
double
atof_c
(
char
const
*str);
94
95
SPHINXBASE_EXPORT
96
uint32 utf8_decode(uint32 *state, uint32 *codep, uint32 *byte);
97
98
/* FIXME: Both of these string splitting functions basically suck. I
99
have attempted to fix them as best I can. (dhuggins@cs, 20070808) */
100
108
SPHINXBASE_EXPORT
109
int32
str2words
(
char
*line,
113
char
**wptr,
125
int32 n_wptr
127
);
128
142
SPHINXBASE_EXPORT
143
int32
nextword
(
char
*line,
145
const
char
*delim,
148
char
**word,
151
char
*delimfound
154
);
155
156
#ifdef __cplusplus
157
}
158
#endif
159
160
161
#endif
/* __SB_STRFUNCS_H__ */
include
sphinxbase
strfuncs.h
Generated by
1.8.3.1