Symbol: wordexp
include/wordexp.h
71
int wordexp(const char * __restrict, wordexp_t * __restrict, int);
lib/libc/tests/gen/wordexp_test.c
100
r = wordexp("hello world", &we, WRDE_DOOFFS);
lib/libc/tests/gen/wordexp_test.c
118
r = wordexp("hello world", &we, 0);
lib/libc/tests/gen/wordexp_test.c
119
r = wordexp("hello world", &we, WRDE_REUSE);
lib/libc/tests/gen/wordexp_test.c
134
r = wordexp("this is", &we, 0);
lib/libc/tests/gen/wordexp_test.c
136
r = wordexp("a test", &we, WRDE_APPEND);
lib/libc/tests/gen/wordexp_test.c
154
r = wordexp("this is", &we, WRDE_DOOFFS);
lib/libc/tests/gen/wordexp_test.c
156
r = wordexp("a test", &we, WRDE_APPEND|WRDE_DOOFFS);
lib/libc/tests/gen/wordexp_test.c
158
r = wordexp("of wordexp", &we, WRDE_APPEND|WRDE_DOOFFS);
lib/libc/tests/gen/wordexp_test.c
179
r = wordexp("${dont_set_me}", &we, WRDE_UNDEF);
lib/libc/tests/gen/wordexp_test.c
189
r = wordexp("`date`", &we, WRDE_NOCMD);
lib/libc/tests/gen/wordexp_test.c
191
r = wordexp("\"`date`\"", &we, WRDE_NOCMD);
lib/libc/tests/gen/wordexp_test.c
193
r = wordexp("$(date)", &we, WRDE_NOCMD);
lib/libc/tests/gen/wordexp_test.c
195
r = wordexp("\"$(date)\"", &we, WRDE_NOCMD);
lib/libc/tests/gen/wordexp_test.c
197
r = wordexp("$((3+5))", &we, WRDE_NOCMD);
lib/libc/tests/gen/wordexp_test.c
199
r = wordexp("\\$\\(date\\)", &we, WRDE_NOCMD|WRDE_REUSE);
lib/libc/tests/gen/wordexp_test.c
201
r = wordexp("'`date`'", &we, WRDE_NOCMD|WRDE_REUSE);
lib/libc/tests/gen/wordexp_test.c
203
r = wordexp("'$(date)'", &we, WRDE_NOCMD|WRDE_REUSE);
lib/libc/tests/gen/wordexp_test.c
214
r = wordexp("'\n|&;<>(){}'", &we, 0);
lib/libc/tests/gen/wordexp_test.c
216
r = wordexp("\"\n|&;<>(){}\"", &we, WRDE_REUSE);
lib/libc/tests/gen/wordexp_test.c
218
r = wordexp("\\\n\\|\\&\\;\\<\\>\\(\\)\\{\\}", &we, WRDE_REUSE);
lib/libc/tests/gen/wordexp_test.c
221
r = wordexp("test \n test", &we, 0);
lib/libc/tests/gen/wordexp_test.c
223
r = wordexp("test | test", &we, 0);
lib/libc/tests/gen/wordexp_test.c
225
r = wordexp("test & test", &we, 0);
lib/libc/tests/gen/wordexp_test.c
227
r = wordexp("test ; test", &we, 0);
lib/libc/tests/gen/wordexp_test.c
229
r = wordexp("test > test", &we, 0);
lib/libc/tests/gen/wordexp_test.c
231
r = wordexp("test < test", &we, 0);
lib/libc/tests/gen/wordexp_test.c
233
r = wordexp("test ( test", &we, 0);
lib/libc/tests/gen/wordexp_test.c
235
r = wordexp("test ) test", &we, 0);
lib/libc/tests/gen/wordexp_test.c
237
r = wordexp("test { test", &we, 0);
lib/libc/tests/gen/wordexp_test.c
239
r = wordexp("test } test", &we, 0);
lib/libc/tests/gen/wordexp_test.c
249
r = wordexp("'", &we, 0);
lib/libc/tests/gen/wordexp_test.c
251
r = wordexp("'", &we, WRDE_UNDEF);
lib/libc/tests/gen/wordexp_test.c
253
r = wordexp("'\\'", &we, 0);
lib/libc/tests/gen/wordexp_test.c
260
r = wordexp("${IFS:+'}", &we, 0);
lib/libc/tests/gen/wordexp_test.c
262
r = wordexp("${IFS:+'}", &we, WRDE_UNDEF);
lib/libc/tests/gen/wordexp_test.c
264
r = wordexp("$(case)", &we, 0);
lib/libc/tests/gen/wordexp_test.c
266
r = wordexp("$(case)", &we, WRDE_UNDEF);
lib/libc/tests/gen/wordexp_test.c
283
r = wordexp("hello world", &we, 0);
lib/libc/tests/gen/wordexp_test.c
308
r = wordexp("hello world", &we, 0);
lib/libc/tests/gen/wordexp_test.c
332
r = wordexp("hello world", &we, 0);
lib/libc/tests/gen/wordexp_test.c
354
r = wordexp("${IFS+hello:world}", &we, 0);
lib/libc/tests/gen/wordexp_test.c
67
r = wordexp("hello world", &we, 0);
lib/libc/tests/gen/wordexp_test.c
86
r = wordexp(longdata, &we, 0);