Searched refs:terminator (Results 1 - 7 of 7) sorted by relevance

/ast/src/cmd/pzip/
H A Dr2c.c55 int terminator; member in struct:State_s
107 t = state.terminator;
178 state.terminator = '\n';
183 switch (optget(argv, "d:[delimiter]l#[compression-level]q:[quote]t:[terminator]vw#[window-size]T#[test-mask]"))
/ast/src/lib/libpz/
H A Dpzhead.c69 if (pz->prefix.terminator >= 0)
73 if (!sfgetr(pz->io, pz->prefix.terminator, 0))
192 if (pz->prefix.terminator >= 0)
197 if (!(s = sfgetr(pz->io, pz->prefix.terminator, 0)))
246 if (pz->prefix.terminator >= 0)
248 t = pz->prefix.terminator;
H A Dpzlib.h103 int terminator; /* prefix record terminator */ \
H A Dpzpart.c37 "[X:prefix?]:[count[*terminator]]]"
566 pz->prefix.terminator = -1;
570 pz->prefix.terminator = '\n';
575 pz->prefix.terminator = chresc(e + 1, &e);
1170 pz->prefix.terminator = -1;
/ast/src/cmd/jcl/
H A Dcpy2dss.c44 "[D:terminator?Set the \b--text\b record terminator character. XML"
46 " accepted.]:[terminator:=&newline;]"
70 " delimited by the \b--terminator\b character. If \b--text\b is"
158 char* terminator; member in struct:State_s
736 delimiter = (next = field->next) ? state.delimiter : state.terminator;
869 if (state.text || state.variable && delimiter == state.terminator)
984 state.terminator = "&newline;";
1009 state.terminator = opt_info.arg;
/ast/src/cmd/dsslib/flat/
H A Dflat.c239 int terminator; member in struct:Flat_s
394 if (c == d || c == flat->terminator)
847 if (flat->fixed && flat->terminator >= 0 && !flat->truncate.field)
850 * if the first record doesn't have a terminator
851 * then we ignore the terminator for all records;
865 flat->terminator = -1;
874 if (s[k] != flat->terminator)
875 flat->terminator = -1;
879 if (((unsigned char*)s)[k] == flat->terminator && (f->physical.format.flags & CX_STRING))
885 flat->terminator
[all...]
/ast/src/lib/libast/regex/
H A Dregcomp.c127 int terminator; /* pattern terminator */ member in struct:Cenv_s
932 if (c == 0 || c == env->delimiter || c == env->terminator)
972 if (!(c = *(env->cursor + 1)) || c == env->terminator)
1006 if (env->type == BRE && (*(env->cursor + 1) == 0 || *(env->cursor + 1) == env->delimiter || *(env->cursor + 1) == env->terminator || *(env->cursor + 1) == '\\' && *(env->cursor + 2) == ')') || (env->flags & REG_MULTIPLE) && *(env->cursor + 1) == '\n')
1204 if (*env->cursor == 0 || *(env->cursor + 1) == 0 || *env->cursor == env->terminator || *(env->cursor + 1) == env->terminator || (env->flags & REG_ESCAPE) && (*env->cursor == env->delimiter || *env->cursor != '\\' && *(env->cursor + 1) == env->delimiter))
1215 if (!(c = *env->cursor) || c == env->terminator || c == env->delimiter && (env->flags & REG_ESCAPE))
1387 if (*env->cursor == env->terminator || *env->cursor == env->delimiter && (env->flags & REG_ESCAPE))
1482 if ((c = *env->cursor) == 0 || c == env->terminator || (en
[all...]

Completed in 28 milliseconds