Searched refs:LF (Results 1 - 3 of 3) sorted by relevance

/haiku/src/tools/unzip/unix/
H A Dunxcfg.h15 # define PutNativeEOL *q++ = native(LF);
/haiku/src/bin/unzip/
H A Dunzpriv.h284 # define PutNativeEOL {*q++ = native(CR); *q++ = native(LF);}
308 # define PutNativeEOL *q++ = native(LF);
352 # define PutNativeEOL *q++ = native(LF);
392 # include <fcntl.h> /* O_BINARY for open() w/o CR/LF translation */
430 # define PutNativeEOL {*q++ = native(CR); *q++ = native(LF);}
456 # define PutNativeEOL *q++ = native(LF);
482 # define PutNativeEOL *q++ = native(LF);
504 /* use a single LF delimiter so that writes to 101 text files work */
505 # define PutNativeEOL *q++ = native(LF);
605 # define PutNativeEOL *q++ = native(LF);
1426 #define LF macro
[all...]
H A Dfileio.c943 Algorithm: CR/LF => native; lone CR => native; lone LF => native.
950 if (*p == LF && G.didCRlast)
954 if (*p == CR) { /* lone CR or CR/LF: treat as EOL */
958 else if (p[1] == LF) /* get rid of accompanying LF */
960 } else if (*p == LF) /* lone LF */
2091 if (p[1] == LF) /* ASCII LF */
[all...]

Completed in 194 milliseconds