]> granicus.if.org Git - multimarkdown/commitdiff
UPDATED: Use astyle with header files as well
authorFletcher T. Penney <fletcher@fletcherpenney.net>
Sat, 22 Jul 2017 00:43:04 +0000 (20:43 -0400)
committerFletcher T. Penney <fletcher@fletcherpenney.net>
Sat, 22 Jul 2017 00:43:04 +0000 (20:43 -0400)
25 files changed:
.astylerc
Makefile
Sources/libMultiMarkdown/aho-corasick.h
Sources/libMultiMarkdown/beamer.h
Sources/libMultiMarkdown/char.h
Sources/libMultiMarkdown/critic_markup.h
Sources/libMultiMarkdown/epub.h
Sources/libMultiMarkdown/fodt.h
Sources/libMultiMarkdown/html.h
Sources/libMultiMarkdown/i18n.h
Sources/libMultiMarkdown/latex.h
Sources/libMultiMarkdown/lexer.h
Sources/libMultiMarkdown/memoir.h
Sources/libMultiMarkdown/mmd.h
Sources/libMultiMarkdown/object_pool.h
Sources/libMultiMarkdown/opendocument-content.h
Sources/libMultiMarkdown/opendocument.h
Sources/libMultiMarkdown/scanners.h
Sources/libMultiMarkdown/stack.h
Sources/libMultiMarkdown/textbundle.h
Sources/libMultiMarkdown/token_pairs.h
Sources/libMultiMarkdown/transclude.h
Sources/libMultiMarkdown/uuid.h
Sources/libMultiMarkdown/writer.h
Sources/libMultiMarkdown/zip.h

index 6acda5c271f5e98e26df40e501ac84d9a69db694..24a20536d896757cea3acdf5aba8ae7c815901e1 100644 (file)
--- a/.astylerc
+++ b/.astylerc
@@ -8,12 +8,25 @@
 # Switch statements
 --indent-switches
 
+# Break long conditionals
+--break-after-logical
+
+# Indent pre-processor directives
+--indent-preproc-block
+--indent-preproc-cond
+
 
 # Excludes
 --exclude="Sources/libMultiMarkdown/scanners.c"
 --exclude="Sources/libMultiMarkdown/parser.c"
 --exclude="Sources/libMultiMarkdown/lexer.c"
---exclude="Sources/multimarkdown/argtable3.c"
+
+--exclude="Sources/libMultiMarkdown/i18n.h"
 --exclude="Sources/libMultiMarkdown/miniz.c"
+--exclude="Sources/libMultiMarkdown/miniz.h"
+--exclude="Sources/libMultiMarkdown/uthash.h"
+
+--exclude="Sources/multimarkdown/argtable3.c"
+--exclude="Sources/multimarkdown/argtable3.h"
 
 --ignore-exclude-errors
index 93f4e23830b33a09facb2ed22ea23723f4497c16..7ca2d3f35a446128665f1d307f4d8cc2ab285cda 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -128,4 +128,4 @@ CHANGELOG:
 # Use astyle
 .PHONY : astyle
 astyle:
-       astyle --options=.astylerc "Sources/libMultiMarkdown/*.c" "Sources/multimarkdown/*.c"
+       astyle --options=.astylerc "Sources/libMultiMarkdown/*.c" "Sources/multimarkdown/*.c" "Sources/libMultiMarkdown/*.h" "Sources/multimarkdown/*.h"
index dc0bb714790d902857cafade0b22f4e2a7f74b54..fec780d4ae6b0003c51c2b4fd7d52872fcf15262 100644 (file)
@@ -4,11 +4,11 @@
 
        @file aho-corasick.h
 
-       @brief 
+       @brief
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `c-template` project is released under the MIT License.
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
@@ -113,7 +113,7 @@ void trie_to_graphviz(trie * a);
 
 
 #ifdef TEST
-#include "CuTest.h"
+       #include "CuTest.h"
 #endif
 
 
index eca3beb3bb2601596b789e1ea129ada4b7311acb..a25a78bd13166824b684f52015e81bb2be4d8cf9 100644 (file)
@@ -4,11 +4,11 @@
 
        @file beamer.h
 
-       @brief 
+       @brief
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
index f14ae502eb101d997c39fd9b71fcd91d1c80118b..ffae4513b9a0afab1d8e9a19132da7148695aa01 100644 (file)
@@ -8,7 +8,7 @@
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
@@ -57,7 +57,7 @@
 #define CHAR_SMART_STRING_H
 
 #ifdef TEST
-#include "CuTest.h"
+       #include "CuTest.h"
 #endif
 
 /// Define character types
index 1c78b6e36d0cc05e4beffa5a8078c030d2804a9f..167668c7622763de2b2296ff9b1d23e31988f31f 100644 (file)
@@ -4,11 +4,11 @@
 
        @file critic_markup.h
 
-       @brief 
+       @brief
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the
        text of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
        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.
@@ -50,7 +50,7 @@
        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.
-       
+
 
 */
 
@@ -80,7 +80,7 @@ enum cm_types {
        CM_ADD_PAIR,
        CM_DEL_PAIR,
        CM_SUB_PAIR,
-       CM_HI_PAIR, 
+       CM_HI_PAIR,
        CM_COM_PAIR,
 
        CM_PLAIN_TEXT
index 2f9e2e962abf0ea9f736d9c0a143f562f2b97cf7..a16d228a4a9a0dc12c9652534d472bd11cdef160 100644 (file)
@@ -4,11 +4,11 @@
 
        @file epub.h
 
-       @brief 
+       @brief
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the
        text of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
        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.
@@ -50,7 +50,7 @@
        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.
-       
+
 
 */
 
index 0f4ff93f79ad98199194decda32b418523f902dc..80d43b2a085c8b202d0dfa0afc5a6571506bd9d1 100644 (file)
@@ -8,7 +8,7 @@
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the
        text of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
        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.
@@ -50,7 +50,7 @@
        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.
-       
+
 
 */
 
index 4e033e382f0a6cd77c05b45ee4e054b69fc6c960..39a4b7457d070d1116bdba235d65f401c7fb0867 100644 (file)
@@ -8,7 +8,7 @@
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
index 07d158fcdd0d363eb5ee65f9302f1e7651b0378f..e406ec39b08906e88acae3d1be8c06304fc8c0a1 100644 (file)
@@ -9,14 +9,14 @@
        swapping out certain strings based on user-specified languages at runtime.
 
        This does slow down compiling, as multiple hash strings are compiled (seemingly
-       quite slowly).  But, to my understanding and testing, it does not affect the 
+       quite slowly).  But, to my understanding and testing, it does not affect the
        speed when actually running MMD.  This should allow translating an arbitrary
        number of strings into an arbitrary number of languages without a performance
        penalty.
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
@@ -121,7 +121,7 @@ static inline const char * Translate(unsigned long x, int l) {
                case 2977473004:
                        return lc_lookup[2 * kNumberOfLanguages + l];
                case 3851221863:
-                       return lc_lookup[3 * kNumberOfLanguages + l];           
+                       return lc_lookup[3 * kNumberOfLanguages + l];
                default:
                        return "localization error";
        }
@@ -144,7 +144,7 @@ enum lc_languages {
 
 
 // MMD expects a lower case 2 letter code in the metadata or command-line arguments`
-static inline short i18n_language_from_string(const char * l) { 
+static inline short i18n_language_from_string(const char * l) {
        if (strcmp(l, "es") == 0) {
                return LC_ES;
        } else if (strcmp(l, "de") == 0) {
index c755882d28d18a48240172f2196b3b5dfb3b7fc0..d9368e7d1163e350b23de327aa682ecb70d38fb1 100644 (file)
@@ -8,7 +8,7 @@
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
index 053692bddb6c715fbed49fe6eee3b037c39b9454..4c6513921526d92a7f22d01008a4e5d19911db6f 100644 (file)
@@ -4,12 +4,12 @@
 
        @file lexer.h
 
-       @brief Description of the regular expressions used to define tokens, 
+       @brief Description of the regular expressions used to define tokens,
        used by re2c to create a lexer/tokenizer.
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
@@ -69,7 +69,7 @@ typedef struct Scanner Scanner;
 
 /// Scan for the next token
 int scan(
-       Scanner * s,                    //!< Pointer to Scanner state structure
-       const char * stop               //!< Pointer to position in string at which to stop parsing
+    Scanner * s,                       //!< Pointer to Scanner state structure
+    const char * stop          //!< Pointer to position in string at which to stop parsing
 );
 
index 6d6aa2dec5489f2c3d92744bcd5d0c059a8faa4f..0edeccaf7440ea950b0516bf05210eb3fee85c77 100644 (file)
@@ -4,11 +4,11 @@
 
        @file memoir.h
 
-       @brief 
+       @brief
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
index 8ba2ff13516d960c9f1fccaa6b69011e90b9b9cf..de742754c50f875b35448e98372431c987476e33 100644 (file)
@@ -8,7 +8,7 @@
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
index a311c4a598d06a132838881250299554b719f328..3dcaca7f65fa6fbb081ad58ae21e9836f0d3ff3d 100644 (file)
@@ -5,12 +5,12 @@
        @file object_pool.h
 
        @brief Allocate memory for "objects" in large slabs, rather than one at a time. Improves
-       performance when generating large numbers of small chunks of memory, as the expense of 
+       performance when generating large numbers of small chunks of memory, as the expense of
        allocating memory in larger units.  Could cause difficulty in extreme low memory situations.
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
@@ -76,25 +76,25 @@ typedef struct pool pool;
 
 /// Allocate a new object pool
 pool * pool_new(
-       short size                                              //!< How big are the objects to be allocated
+    short size                                                 //!< How big are the objects to be allocated
 );
 
 
 /// Free object pool
 void pool_free(
-       pool * p                                                //!< Pool to be freed
+    pool * p                                           //!< Pool to be freed
 );
 
 
 /// Drain pool -- free slabs previously allocated
 void pool_drain(
-       pool * p                                                //!< Pool to be drained
+    pool * p                                           //!< Pool to be drained
 );
 
 
 /// Request memory for a new object from the pool
 void * pool_allocate_object(
-       pool * p                                                //!< Pool to be used for allocation
+    pool * p                                           //!< Pool to be used for allocation
 );
 
 
index e99eed20cbfdea9c424655003cdd29bf8e34ad8e..4bfd49ecb770e99dd53a8e88efe1305494b6d18b 100644 (file)
@@ -4,11 +4,11 @@
 
        @file opendocument-content.h
 
-       @brief 
+       @brief
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the
        text of the license.
-       
+
        uthash library:
                Copyright (c) 2005-2016, Troy D. Hanson
-       
+
                Licensed under Revised BSD license
-       
+
        miniz library:
                Copyright 2013-2014 RAD Game Tools and Valve Software
                Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC
-       
+
                Licensed under the MIT license
-       
+
        argtable3 library:
                Copyright (C) 1998-2001,2003-2011,2013 Stewart Heitmann
                <sheitmann@users.sourceforge.net>
                All rights reserved.
-       
+
                Licensed under the Revised BSD License
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
        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.
        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.
-       
-       
+
+
        ## Revised BSD License ##
-       
+
        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are
        met:
@@ -85,7 +85,7 @@
              names of its contributors may be used to endorse or promote
              products derived from this software without specific prior
              written permission.
-       
+
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
        "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
        LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -97,7 +97,7 @@
        LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
        NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
        SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-       
+
 
 */
 
index c7abb02e5686b97ad5ee3838e60fe36435385623..5de817e4f18cff258b4c6417b08a95a23573b21d 100644 (file)
@@ -8,7 +8,7 @@
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the
        text of the license.
-       
+
        uthash library:
                Copyright (c) 2005-2016, Troy D. Hanson
-       
+
                Licensed under Revised BSD license
-       
+
        miniz library:
                Copyright 2013-2014 RAD Game Tools and Valve Software
                Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC
-       
+
                Licensed under the MIT license
-       
+
        argtable3 library:
                Copyright (C) 1998-2001,2003-2011,2013 Stewart Heitmann
                <sheitmann@users.sourceforge.net>
                All rights reserved.
-       
+
                Licensed under the Revised BSD License
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
        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.
        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.
-       
-       
+
+
        ## Revised BSD License ##
-       
+
        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are
        met:
@@ -85,7 +85,7 @@
              names of its contributors may be used to endorse or promote
              products derived from this software without specific prior
              written permission.
-       
+
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
        "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
        LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -97,7 +97,7 @@
        LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
        NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
        SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-       
+
 
 */
 
index cb6591c8b07939740efb28efd5b54679ef6bd223..cb2e2f5845a1cc3a3ea0ee5ba3559b0b343f600f 100644 (file)
@@ -9,7 +9,7 @@
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
@@ -58,7 +58,7 @@
 #define SCANNERS_MULTIMARKDOWN_H
 
 #ifdef TEST
-#include "CuTest.h"
+       #include "CuTest.h"
 #endif
 
 enum alignments {
index 5248a591bf5b1889d54f0f39b5a3f724d85908fc..87c7a7c251bc5a46289e4196cfd7c499a5749262 100644 (file)
@@ -8,7 +8,7 @@
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
@@ -71,39 +71,39 @@ typedef struct stack stack;
 /// Create a new stack with dynamic storage with an
 /// initial capacity (0 to use default capacity)
 stack * stack_new(
-       int startingSize                                //!< Default capacity for stack
+    int startingSize                           //!< Default capacity for stack
 );
 
 
 /// Free the stack
 void stack_free(
-       stack * s                                               //!< Stack to be freed
+    stack * s                                          //!< Stack to be freed
 );
 
 
 /// Add a new pointer to the stack
 void stack_push(
-       stack * s,                                              //!< Stack to use
-       void * element                                  //!< Pointer to push onto stack
+    stack * s,                                         //!< Stack to use
+    void * element                                     //!< Pointer to push onto stack
 );
 
 
 /// Pop the top pointer off the stack and return it
 void * stack_pop(
-       stack * s                                               //!< Stack to examine
+    stack * s                                          //!< Stack to examine
 );
 
 
 /// Peek at the top pointer on the stack (but don't remove it from stack)
 void * stack_peek(
-       stack * s                                               //!< Stack to examine
+    stack * s                                          //!< Stack to examine
 );
 
 
 /// Peek at a specific index in the stack
 void * stack_peek_index(
-       stack * s,                                              //!< Stack to examine
-       size_t index                                    //!< Index to peek at (0 is first pointer on stack)
+    stack * s,                                         //!< Stack to examine
+    size_t index                                       //!< Index to peek at (0 is first pointer on stack)
 );
 
 
index 68d8bfd7b40c923d77f12192b070d98aab7da60c..d56e66837b1b93764de6f86c4bf538a21edf6863 100644 (file)
@@ -4,11 +4,11 @@
 
        @file textbundle.h
 
-       @brief 
+       @brief
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the
        text of the license.
-       
+
        uthash library:
                Copyright (c) 2005-2016, Troy D. Hanson
-       
+
                Licensed under Revised BSD license
-       
+
        miniz library:
                Copyright 2013-2014 RAD Game Tools and Valve Software
                Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC
-       
+
                Licensed under the MIT license
-       
+
        argtable3 library:
                Copyright (C) 1998-2001,2003-2011,2013 Stewart Heitmann
                <sheitmann@users.sourceforge.net>
                All rights reserved.
-       
+
                Licensed under the Revised BSD License
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
        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.
        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.
-       
-       
+
+
        ## Revised BSD License ##
-       
+
        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are
        met:
@@ -85,7 +85,7 @@
              names of its contributors may be used to endorse or promote
              products derived from this software without specific prior
              written permission.
-       
+
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
        "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
        LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -97,7 +97,7 @@
        LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
        NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
        SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-       
+
 
 */
 
index 4de480e454d3a088ec7d5dbb52ad2521b55816fc..6e4001e1007b5ebc9f5711cb0dc45aafe1e84aa8 100644 (file)
@@ -9,7 +9,7 @@
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
@@ -62,7 +62,7 @@
 
 
 #ifdef TEST
-#include "CuTest.h"
+       #include "CuTest.h"
 #endif
 
 #define kMaxTokenTypes 230                             //!< This needs to be larger than the largest token type being used
@@ -70,7 +70,7 @@
 #define kMaxPairRecursiveDepth 1000            //!< Maximum recursion depth to traverse when pairing tokens -- to prevent stack overflow with "pathologic" input
 
 
-/// Store information about which tokens can be paired, and what actions to take when 
+/// Store information about which tokens can be paired, and what actions to take when
 /// pairing them.
 struct token_pair_engine {
        unsigned short          can_open_pair[kMaxTokenTypes];                          //!< Can token type open a pair?
@@ -99,24 +99,24 @@ token_pair_engine * token_pair_engine_new(void);
 
 /// Free existing token pair engine
 void token_pair_engine_free(
-       token_pair_engine * e                                   //!< Token pair engine to be freed
+    token_pair_engine * e                                      //!< Token pair engine to be freed
 );
 
 /// Add a new pairing configuration to a token pair engine
 void token_pair_engine_add_pairing(
-       token_pair_engine * e,                                  //!< Token pair engine to add to
-       unsigned short open_type,                               //!< Token type for opener
-       unsigned short close_type,                              //!< Token type for closer
-       unsigned short pair_type,                               //!< Token type for pairing
-       int options                                                             //!< Token pair options to use
+    token_pair_engine * e,                                     //!< Token pair engine to add to
+    unsigned short open_type,                          //!< Token type for opener
+    unsigned short close_type,                         //!< Token type for closer
+    unsigned short pair_type,                          //!< Token type for pairing
+    int options                                                                //!< Token pair options to use
 );
 
 /// Search a token's childen for matching pairs
 void token_pairs_match_pairs_inside_token(
-       token * parent,                                                 //!< Which tokens should we search for pairs
-       token_pair_engine * e,                                  //!< Token pair engine to be used for matching
-       stack * s,                                                              //!< Pointer to a stack to use for pairing tokens
-       unsigned short depth                                    //!< Keep track of recursion depth
+    token * parent,                                                    //!< Which tokens should we search for pairs
+    token_pair_engine * e,                                     //!< Token pair engine to be used for matching
+    stack * s,                                                         //!< Pointer to a stack to use for pairing tokens
+    unsigned short depth                                       //!< Keep track of recursion depth
 );
 
 
index f21aff230f9814a852aab4dc8ae2a99c702609d3..beac7fb83e36ed7ef260a7f404c28a8a0e863722 100644 (file)
@@ -4,11 +4,11 @@
 
        @file transclude.h
 
-       @brief 
+       @brief
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
@@ -59,7 +59,7 @@
 #include "stack.h"
 
 #ifdef TEST
-#include "CuTest.h"
+       #include "CuTest.h"
 #endif
 
 
index 174f59be8671ebd1d1c84a3a7dd62bd8af2c9004..91827f6a0e89caaca68eb1d407d3803334631760 100644 (file)
@@ -4,11 +4,11 @@
 
        @file uuid.h
 
-       @brief 
+       @brief
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the
        text of the license.
-       
+
        uthash library:
                Copyright (c) 2005-2016, Troy D. Hanson
-       
+
                Licensed under BSD Revised license
-       
+
        miniz library:
                Copyright 2013-2014 RAD Game Tools and Valve Software
                Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC
-       
+
                Licensed under the MIT license
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
        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.
@@ -61,7 +61,7 @@
        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.
-       
+
 
 */
 
index 7d6594da6ec321569d5a34794612855ad09cf07b..2582c4a3a2b9e8857873303758bafd990138c0f2 100644 (file)
@@ -8,7 +8,7 @@
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the text
        of the license.
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
@@ -57,7 +57,7 @@
 #define WRITER_MULTIMARKDOWN_H
 
 #ifdef TEST
-#include "CuTest.h"
+       #include "CuTest.h"
 #endif
 
 #include "d_string.h"
@@ -115,7 +115,7 @@ typedef struct {
        stack *                         outline_stack;
 
        short                           recurse_depth;
-       
+
        short                           in_table_header;
        short                           table_column_count;
        short                           table_cell_count;
index 4c774e2fc29f3da3c3e83bf7b574274c7bf80d48..0340a7ff53b9f37a2b1c969ba2884f6989019876 100644 (file)
@@ -4,11 +4,11 @@
 
        @file zip.h
 
-       @brief 
+       @brief
 
 
        @author Fletcher T. Penney
-       @bug    
+       @bug
 
 **/
 
 
 
        The `MultiMarkdown 6` project is released under the MIT License..
-       
+
        GLibFacade.c and GLibFacade.h are from the MultiMarkdown v4 project:
-       
+
                https://github.com/fletcher/MultiMarkdown-4/
-       
+
        MMD 4 is released under both the MIT License and GPL.
-       
-       
+
+
        CuTest is released under the zlib/libpng license. See CuTest.c for the
        text of the license.
-       
+
        uthash library:
                Copyright (c) 2005-2016, Troy D. Hanson
-       
+
                Licensed under Revised BSD license
-       
+
        miniz library:
                Copyright 2013-2014 RAD Game Tools and Valve Software
                Copyright 2010-2014 Rich Geldreich and Tenacious Software LLC
-       
+
                Licensed under the MIT license
-       
+
        argtable3 library:
                Copyright (C) 1998-2001,2003-2011,2013 Stewart Heitmann
                <sheitmann@users.sourceforge.net>
                All rights reserved.
-       
+
                Licensed under the Revised BSD License
-       
-       
+
+
        ## The MIT License ##
-       
+
        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
        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.
        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.
-       
-       
+
+
        ## Revised BSD License ##
-       
+
        Redistribution and use in source and binary forms, with or without
        modification, are permitted provided that the following conditions are
        met:
@@ -85,7 +85,7 @@
              names of its contributors may be used to endorse or promote
              products derived from this software without specific prior
              written permission.
-       
+
        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
        "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
        LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -97,7 +97,7 @@
        LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
        NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
        SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-       
+
 
 */