SphinxBase 5prealpha
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>
50
51
52#ifdef __cplusplus
53extern "C" {
54#endif
55#if 0
56/* Fool Emacs. */
57}
58#endif
59
64SPHINXBASE_EXPORT
65char *string_join(const char *base, ...);
66
75
82SPHINXBASE_EXPORT
83char *string_trim(char *string, enum string_edge_e which);
84
92SPHINXBASE_EXPORT
93double atof_c(char const *str);
94
95/* FIXME: Both of these string splitting functions basically suck. I
96 have attempted to fix them as best I can. (dhuggins@cs, 20070808) */
97
105SPHINXBASE_EXPORT
106int32 str2words (char *line,
110 char **wptr,
122 int32 n_wptr
124 );
125
139SPHINXBASE_EXPORT
140int32 nextword (char *line,
142 const char *delim,
145 char **word,
148 char *delimfound
151 );
152
153#ifdef __cplusplus
154}
155#endif
156
157
158#endif /* __SB_STRFUNCS_H__ */
Basic type definitions used in Sphinx.
SPHINXBASE_EXPORT int32 nextword(char *line, const char *delim, char **word, char *delimfound)
Yet another attempt at a clean "next-word-in-string" function.
Definition strfuncs.c:166
SPHINXBASE_EXPORT char * string_trim(char *string, enum string_edge_e which)
Remove whitespace from a string, modifying it in-place.
Definition strfuncs.c:97
SPHINXBASE_EXPORT char * string_join(const char *base,...)
Concatenate a NULL-terminated argument list of strings, returning a newly allocated string.
Definition strfuncs.c:70
SPHINXBASE_EXPORT int32 str2words(char *line, char **wptr, int32 n_wptr)
Convert a line to an array of "words", based on whitespace separators.
Definition strfuncs.c:123
string_edge_e
Which end of a string to operate on for string_trim().
Definition strfuncs.h:70
@ STRING_END
End of string.
Definition strfuncs.h:72
@ STRING_BOTH
Both ends of string.
Definition strfuncs.h:73
@ STRING_START
Beginning of string.
Definition strfuncs.h:71
SPHINXBASE_EXPORT double atof_c(char const *str)
Locale independent version of atof().
Definition strfuncs.c:55