removed the need to regenerate the jsx_utfxx decoders. not sure why i didn't do that before, pretty sure i had a bad reason
This commit is contained in:
parent
67d2e6219e
commit
134aa8cc49
10 changed files with 801 additions and 6649 deletions
1308
src/jsx_utf16.erl
1308
src/jsx_utf16.erl
File diff suppressed because it is too large
Load diff
1326
src/jsx_utf16le.erl
1326
src/jsx_utf16le.erl
File diff suppressed because it is too large
Load diff
1303
src/jsx_utf32.erl
1303
src/jsx_utf32.erl
File diff suppressed because it is too large
Load diff
1320
src/jsx_utf32le.erl
1320
src/jsx_utf32le.erl
File diff suppressed because it is too large
Load diff
|
@ -1,7 +1,35 @@
|
|||
%% The MIT License
|
||||
|
||||
%% Copyright (c) 2010 Alisdair Sullivan <alisdairsullivan@yahoo.ca>
|
||||
|
||||
%% Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
%% of this software and associated documentation files (the "Software"), to deal
|
||||
%% in the Software without restriction, including without limitation the rights
|
||||
%% to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
%% copies of the Software, and to permit persons to whom the Software is
|
||||
%% furnished to do so, subject to the following conditions:
|
||||
|
||||
%% The above copyright notice and this permission notice shall be included in
|
||||
%% all copies or substantial portions of the Software.
|
||||
|
||||
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
%% IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
%% FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
%% AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
%% LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
%% OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
%% THE SOFTWARE.
|
||||
|
||||
|
||||
%% @hidden hide this module from edoc, exported functions are internal to jsx
|
||||
%% and may be altered or removed without notice
|
||||
|
||||
|
||||
-module(jsx_utf8).
|
||||
|
||||
|
||||
-define(utf8, true).
|
||||
-include("./include/jsx_decoder.hrl").
|
||||
|
||||
|
||||
-include("./include/jsx_decoder_template.hrl").
|
||||
%% i've noticed you've noticed that there's no source here. very astute. see
|
||||
%% jsx_decoder_template.hrl in the include directory. any mofications to this
|
||||
%% module should be made there, but keep in mind other modules also include
|
||||
%% that header
|
Loading…
Add table
Add a link
Reference in a new issue