Place Sbeezg into the public domain.
catseye
10 years ago
0 | This is free and unencumbered software released into the public domain. | |
1 | ||
2 | Anyone is free to copy, modify, publish, use, compile, sell, or | |
3 | distribute this software, either in source code form or as a compiled | |
4 | binary, for any purpose, commercial or non-commercial, and by any | |
5 | means. | |
6 | ||
7 | In jurisdictions that recognize copyright laws, the author or authors | |
8 | of this software dedicate any and all copyright interest in the | |
9 | software to the public domain. We make this dedication for the benefit | |
10 | of the public at large and to the detriment of our heirs and | |
11 | successors. We intend this dedication to be an overt act of | |
12 | relinquishment in perpetuity of all present and future rights to this | |
13 | software under copyright law. | |
14 | ||
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | |
18 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR | |
19 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | |
20 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | |
21 | OTHER DEALINGS IN THE SOFTWARE. | |
22 | ||
23 | For more information, please refer to <http://unlicense.org/> |
0 | 0 | -module(sbeezg). |
1 | 1 | -vsn('2002.0317'). |
2 | 2 | -author('cpressey@gmail.com'). |
3 | -copyright('Copyright (c)2002 Cat`s Eye Technologies. All rights reserved.'). | |
4 | ||
5 | %%% Redistribution and use in source and binary forms, with or without | |
6 | %%% modification, are permitted provided that the following conditions | |
7 | %%% are met: | |
8 | %%% | |
9 | %%% 1. Redistributions of source code must retain the above copyright | |
10 | %%% notices, this list of conditions and the following disclaimer. | |
11 | %%% 2. Redistributions in binary form must reproduce the above copyright | |
12 | %%% notices, this list of conditions, and the following disclaimer in | |
13 | %%% the documentation and/or other materials provided with the | |
14 | %%% distribution. | |
15 | %%% 3. Neither the names of the copyright holders nor the names of their | |
16 | %%% contributors may be used to endorse or promote products derived | |
17 | %%% from this software without specific prior written permission. | |
18 | %%% | |
19 | %%% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
20 | %%% ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, BUT NOT | |
21 | %%% LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | |
22 | %%% FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | |
23 | %%% COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | |
24 | %%% INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | |
25 | %%% BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
26 | %%% LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |
27 | %%% CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
28 | %%% LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | |
29 | %%% ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
30 | %%% POSSIBILITY OF SUCH DAMAGE. | |
3 | -copyright('This work is in the public domain; see UNLICENSE for more info'). | |
31 | 4 | |
32 | 5 | -export([run/1, test/1]). |
33 | 6 |
0 | 0 | %%% -grammar(sbeezg_parser). |
1 | 1 | %%% -vsn('2002.0317'). |
2 | 2 | %%% -author('cpressey@gmail.com'). |
3 | %%% -copyright('Copyright (c)2002 Cat`s Eye Technologies. All rights reserved.'). | |
4 | ||
5 | %%% Redistribution and use in source and binary forms, with or without | |
6 | %%% modification, are permitted provided that the following conditions | |
7 | %%% are met: | |
8 | %%% | |
9 | %%% 1. Redistributions of source code must retain the above copyright | |
10 | %%% notices, this list of conditions and the following disclaimer. | |
11 | %%% 2. Redistributions in binary form must reproduce the above copyright | |
12 | %%% notices, this list of conditions, and the following disclaimer in | |
13 | %%% the documentation and/or other materials provided with the | |
14 | %%% distribution. | |
15 | %%% 3. Neither the names of the copyright holders nor the names of their | |
16 | %%% contributors may be used to endorse or promote products derived | |
17 | %%% from this software without specific prior written permission. | |
18 | %%% | |
19 | %%% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
20 | %%% ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES INCLUDING, BUT NOT | |
21 | %%% LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | |
22 | %%% FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | |
23 | %%% COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | |
24 | %%% INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | |
25 | %%% BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | |
26 | %%% LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | |
27 | %%% CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | |
28 | %%% LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | |
29 | %%% ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
30 | %%% POSSIBILITY OF SUCH DAMAGE. | |
3 | %%% -copyright('This work is in the public domain; see UNLICENSE for more info'). | |
31 | 4 | |
32 | 5 | %%% BEGIN sbeezg_parser.yrl %%% |
33 | 6 |