1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
/*
* Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
* Copyright (C) INRIA -
*
* This file must be used under the terms of the CeCILL.
* This source file is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
* are also available at
* http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
*
*/
/*--------------------------------------------------------------------------*/
#ifndef __GW_STRING__
#define __GW_STRING__
#include "dynlib_string.h"
/*--------------------------------------------------------------------------*/
STRING_IMPEXP int gw_string(void);
/*--------------------------------------------------------------------------*/
STRING_IMPEXP int sci_length(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_part(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_string(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_convstr(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_emptystr(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_str2code(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_code2str(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strcat(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strindex(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strsubst(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_ascii(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_grep(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_tokens(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strsplit(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_stripblanks(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strcmp(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_isletter(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_isdigit(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_isalphanum(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_isascii(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strcspn(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strncpy(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strchr(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strstr(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strrev(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strtok(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strspn(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_strtod(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_regexp(char *fname, unsigned long fname_len);
STRING_IMPEXP int sci_isnum(char *fname, unsigned long fname_len);
/*--------------------------------------------------------------------------*/
#endif /* __GW_STRING__ */
/*--------------------------------------------------------------------------*/
|