1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=2 sw=2 et tw=78: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef nsParserConstants_h_
8 #define nsParserConstants_h_
10 const char16_t kSpace
= ' ';
11 const char16_t kQuote
= '"';
12 const char16_t kApostrophe
= '\'';
13 const char16_t kLessThan
= '<';
14 const char16_t kGreaterThan
= '>';
15 const char16_t kAmpersand
= '&';
16 const char16_t kBackSlash
= '\\';
17 const char16_t kEqual
= '=';
18 const char16_t kSemicolon
= ';';
19 const char16_t kComma
= ',';
20 const char16_t kNullCh
= '\0';
22 #endif // nsParserConstants_h_