OpenVAS Scanner  21.4.1
nasl_text_utils.h
Go to the documentation of this file.
1 /* Based on work Copyright (C) 2002 - 2003 Michel Arboi and Renaud Deraison
2  *
3  * SPDX-License-Identifier: GPL-2.0-only
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * version 2 as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #ifndef NASL_TEXT_UTILS_H
20 #define NASL_TEXT_UTILS_H
21 
22 #include "nasl_lex_ctxt.h"
23 
24 tree_cell *
26 
27 tree_cell *
29 
30 tree_cell *
32 
33 tree_cell *
35 
36 tree_cell *
38 
39 tree_cell *
40 nasl_hex (lex_ctxt *);
41 
42 tree_cell *
44 
45 tree_cell *
46 nasl_ord (lex_ctxt *);
47 
48 tree_cell *
50 
51 tree_cell *
53 
54 tree_cell *
56 
57 tree_cell *
59 
60 tree_cell *
62 
63 tree_cell *
65 
66 tree_cell *
68 
69 tree_cell *
71 
72 tree_cell *
74 
75 tree_cell *
77 
78 tree_cell *
80 
81 tree_cell *
83 
84 tree_cell *
86 
87 tree_cell *
88 nasl_int (lex_ctxt *);
89 
90 tree_cell *
92 
93 tree_cell *
95 
96 #endif
tree_cell * nasl_chomp(lex_ctxt *)
Takes an unnamed string argument and removes any spaces at the end of it. "Space" means white space,...
Definition: nasl_text_utils.c:1089
tree_cell * nasl_insstr(lex_ctxt *)
Definition: nasl_text_utils.c:900
tree_cell * nasl_match(lex_ctxt *)
Definition: nasl_text_utils.c:958
tree_cell * nasl_display(lex_ctxt *)
Definition: nasl_text_utils.c:308
tree_cell * nasl_toupper(lex_ctxt *)
Definition: nasl_text_utils.c:420
tree_cell * nasl_strlen(lex_ctxt *)
Definition: nasl_text_utils.c:265
tree_cell * nasl_ereg_replace(lex_ctxt *)
Definition: nasl_text_utils.c:647
tree_cell * nasl_eregmatch(lex_ctxt *)
Does extended regular expression pattern matching.
Definition: nasl_text_utils.c:791
tree_cell * nasl_hex(lex_ctxt *)
Definition: nasl_text_utils.c:332
tree_cell * nasl_substr(lex_ctxt *)
Definition: nasl_text_utils.c:844
tree_cell * nasl_rawstring(lex_ctxt *)
Definition: nasl_text_utils.c:149
tree_cell * nasl_int(lex_ctxt *)
Definition: nasl_text_utils.c:1326
tree_cell * nasl_ereg(lex_ctxt *)
Definition: nasl_text_utils.c:449
tree_cell * nasl_tolower(lex_ctxt *)
Definition: nasl_text_utils.c:398
tree_cell * nasl_ord(lex_ctxt *)
Definition: nasl_text_utils.c:379
tree_cell * nasl_stridx(lex_ctxt *)
Returns index of a substring.
Definition: nasl_text_utils.c:1212
tree_cell * nasl_hexstr(lex_ctxt *)
Definition: nasl_text_utils.c:352
tree_cell * nasl_split(lex_ctxt *)
Definition: nasl_text_utils.c:982
tree_cell * nasl_str_replace(lex_ctxt *)
Definition: nasl_text_utils.c:1248
tree_cell * nasl_strstr(lex_ctxt *)
Definition: nasl_text_utils.c:1174
tree_cell * nasl_string(lex_ctxt *)
Definition: nasl_text_utils.c:52
tree_cell * nasl_crap(lex_ctxt *)
Definition: nasl_text_utils.c:1112
tree_cell * nasl_egrep(lex_ctxt *)
Definition: nasl_text_utils.c:685
tree_cell * nasl_strcat(lex_ctxt *)
Definition: nasl_text_utils.c:276
Definition: nasl_tree.h:105
Definition: nasl_lex_ctxt.h:34