Next: x1f4_pipe_shuffle, Previous: x1f4_over_shuffle, Up: Procedural Language Interpreter Functions [Index]
extern int x1f4_peer_shuffle (const char *program, unsigned flags);
The x1f4_peer_shuffle
function determines if the program
textual
program is likely a procedural one rather than an imperative one. Flags may
list X1f4_A1_SCOMMENT
, indicating that shell style comments (‘#’
led) should be allowed.
The function returns 1
for procedural program likelyhood, 0
otherwise.
The x1f4_gawp_shuffle
function will be more able to make the same
determination. x1f4_peer_shuffle
is a convenience for calling
x1f4_gawp_shuffle
with NULL
for the extra arguments.
See x1f4_gawp_shuffle.