This commit is contained in:
mscott%netscape.com 1999-02-09 03:23:10 +00:00
Родитель 42bcff3720
Коммит fb0265ba77
1 изменённых файлов: 9 добавлений и 0 удалений

Просмотреть файл

@ -27,6 +27,15 @@
#include "nsString.h"
#include "nsVoidArray.h"
/* Carriage return and linefeeds */
#define CR '\015'
#define LF '\012'
#define VTAB '\013'
#define FF '\014'
#define TAB '\011'
#define CRLF "\015\012" /* A CR LF equivalent string */
/* Right now, plstr.h does not implement strok yet, so we'll go through the string library for this.... */
/* We need to fix this! strtok is not thread-safe on most platforms.
* we need a better solution for this */