├── .gitignore ├── LICENSE ├── Makefile ├── README.en.html ├── README.es.html ├── README.html ├── README.md ├── doc ├── Makefile ├── cedro.css ├── cedro.png ├── fonts │ ├── GoudyStM-webfont.woff │ └── MIT License.txt └── sentido-labs-mono.svg ├── lib └── miniz │ ├── LICENSE │ ├── miniz.c │ ├── miniz.h │ └── readme.md ├── src ├── array.h ├── cedro-new.c ├── cedro-test.c ├── cedro.c ├── cedrocc.c ├── macros.h ├── macros │ ├── backstitch.h │ ├── defer.h │ └── slice.h ├── utf8.h └── zip-template.c ├── template ├── Makefile ├── Makefile.libuv.mk ├── Makefile.nanovg.mk ├── README.md ├── doc │ └── api.css ├── fonts │ └── b612-1.008 │ │ ├── B612Mono-Regular.ttf │ │ ├── OFL.txt │ │ └── TRADEMARKS.md ├── lib │ ├── btree.c-0.3.0 │ │ ├── .package │ │ ├── LICENSE │ │ ├── README.md │ │ ├── btree.c │ │ └── btree.h │ ├── ctl │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── ctl.h │ │ ├── deq.h │ │ ├── lst.h │ │ ├── pqu.h │ │ ├── que.h │ │ ├── set.h │ │ ├── stk.h │ │ ├── str.h │ │ ├── ust.h │ │ └── vec.h │ └── hash-table.h ├── logo.png ├── src │ ├── assets.c │ ├── eprintln.h │ ├── main.c │ ├── main.libuv.c │ └── main.nanovg.c └── tools │ └── cedro │ ├── README.en.html │ ├── README.es.html │ ├── array.h │ ├── cedro.c │ ├── cedrocc.c │ ├── macros.h │ ├── macros │ ├── backstitch.h │ ├── defer.h │ └── slice.h │ └── utf8.h └── test ├── backstitch-array-init.c ├── backstitch-complex-prefix.c ├── backstitch-function-arguments-only-one.c ├── backstitch-function-arguments-subsequent.c ├── backstitch-left-associative-functions.c ├── backstitch-left-associative-object.c ├── backstitch-libuv-prefix.c ├── backstitch-nanovg.c ├── backstitch-nested.c ├── backstitch-ngx-sqlite.c ├── backstitch-no-function.c ├── backstitch-no-segments-prefix.c ├── backstitch-no-segments-suffix.c ├── backstitch-object-comma-operator.c ├── backstitch-object-field.c ├── backstitch-object-prefix.c ├── backstitch-object-suffix.c ├── backstitch-object.c ├── backstitch-typedef-enum.c ├── binary-literal.c ├── block-macros-semicolon.c ├── block-macros-typedef.c ├── block-macros.c ├── defer-label-break-defer-keyword.c ├── defer-label-break.c ├── defer-line-directives.c ├── defer-reserve-block.c ├── defer-spinlocks.c ├── defer-text-file.c ├── foreach-enum-strings.c ├── foreach-struct-print.c ├── foreach-vector-container.c ├── include-binary-embed-as-string.c ├── include-binary-embed.c ├── include-binary.c ├── label-break.c ├── parser-comments-strings-characters.c ├── reference ├── backstitch-array-init.c ├── backstitch-complex-prefix.c ├── backstitch-function-arguments-only-one.c ├── backstitch-function-arguments-subsequent.c ├── backstitch-left-associative-functions.c ├── backstitch-left-associative-object.c ├── backstitch-libuv-prefix.c ├── backstitch-nanovg.c ├── backstitch-nested.c ├── backstitch-ngx-sqlite.c ├── backstitch-no-function.c ├── backstitch-no-segments-prefix.c ├── backstitch-no-segments-suffix.c ├── backstitch-object-comma-operator.c ├── backstitch-object-field.c ├── backstitch-object-prefix.c ├── backstitch-object-suffix.c ├── backstitch-object.c ├── backstitch-typedef-enum.c ├── binary-literal.c ├── block-macros-semicolon.c ├── block-macros-typedef.c ├── block-macros.c ├── defer-label-break-defer-keyword.c ├── defer-label-break.c ├── defer-line-directives.c ├── defer-reserve-block.c ├── defer-spinlocks.c ├── defer-text-file.c ├── foreach-enum-strings.c ├── foreach-struct-print.c ├── foreach-vector-container.c ├── include-binary-embed-as-string.c ├── include-binary-embed.c ├── include-binary.c ├── label-break.c ├── parser-comments-strings-characters.c ├── slice-char-slice.c ├── slice-composite-array.c └── slice-marquee.c ├── slice-char-slice.c ├── slice-composite-array.c ├── slice-marquee.c └── small-file.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/Makefile -------------------------------------------------------------------------------- /README.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/README.en.html -------------------------------------------------------------------------------- /README.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/README.es.html -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/cedro.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/doc/cedro.css -------------------------------------------------------------------------------- /doc/cedro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/doc/cedro.png -------------------------------------------------------------------------------- /doc/fonts/GoudyStM-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/doc/fonts/GoudyStM-webfont.woff -------------------------------------------------------------------------------- /doc/fonts/MIT License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/doc/fonts/MIT License.txt -------------------------------------------------------------------------------- /doc/sentido-labs-mono.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/doc/sentido-labs-mono.svg -------------------------------------------------------------------------------- /lib/miniz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/lib/miniz/LICENSE -------------------------------------------------------------------------------- /lib/miniz/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/lib/miniz/miniz.c -------------------------------------------------------------------------------- /lib/miniz/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/lib/miniz/miniz.h -------------------------------------------------------------------------------- /lib/miniz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/lib/miniz/readme.md -------------------------------------------------------------------------------- /src/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/src/array.h -------------------------------------------------------------------------------- /src/cedro-new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/src/cedro-new.c -------------------------------------------------------------------------------- /src/cedro-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/src/cedro-test.c -------------------------------------------------------------------------------- /src/cedro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/src/cedro.c -------------------------------------------------------------------------------- /src/cedrocc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/src/cedrocc.c -------------------------------------------------------------------------------- /src/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/src/macros.h -------------------------------------------------------------------------------- /src/macros/backstitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/src/macros/backstitch.h -------------------------------------------------------------------------------- /src/macros/defer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/src/macros/defer.h -------------------------------------------------------------------------------- /src/macros/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/src/macros/slice.h -------------------------------------------------------------------------------- /src/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/src/utf8.h -------------------------------------------------------------------------------- /src/zip-template.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/src/zip-template.c -------------------------------------------------------------------------------- /template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/Makefile -------------------------------------------------------------------------------- /template/Makefile.libuv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/Makefile.libuv.mk -------------------------------------------------------------------------------- /template/Makefile.nanovg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/Makefile.nanovg.mk -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/README.md -------------------------------------------------------------------------------- /template/doc/api.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/doc/api.css -------------------------------------------------------------------------------- /template/fonts/b612-1.008/B612Mono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/fonts/b612-1.008/B612Mono-Regular.ttf -------------------------------------------------------------------------------- /template/fonts/b612-1.008/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/fonts/b612-1.008/OFL.txt -------------------------------------------------------------------------------- /template/fonts/b612-1.008/TRADEMARKS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/fonts/b612-1.008/TRADEMARKS.md -------------------------------------------------------------------------------- /template/lib/btree.c-0.3.0/.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/btree.c-0.3.0/.package -------------------------------------------------------------------------------- /template/lib/btree.c-0.3.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/btree.c-0.3.0/LICENSE -------------------------------------------------------------------------------- /template/lib/btree.c-0.3.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/btree.c-0.3.0/README.md -------------------------------------------------------------------------------- /template/lib/btree.c-0.3.0/btree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/btree.c-0.3.0/btree.c -------------------------------------------------------------------------------- /template/lib/btree.c-0.3.0/btree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/btree.c-0.3.0/btree.h -------------------------------------------------------------------------------- /template/lib/ctl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/LICENSE -------------------------------------------------------------------------------- /template/lib/ctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/README.md -------------------------------------------------------------------------------- /template/lib/ctl/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/VERSION -------------------------------------------------------------------------------- /template/lib/ctl/ctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/ctl.h -------------------------------------------------------------------------------- /template/lib/ctl/deq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/deq.h -------------------------------------------------------------------------------- /template/lib/ctl/lst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/lst.h -------------------------------------------------------------------------------- /template/lib/ctl/pqu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/pqu.h -------------------------------------------------------------------------------- /template/lib/ctl/que.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/que.h -------------------------------------------------------------------------------- /template/lib/ctl/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/set.h -------------------------------------------------------------------------------- /template/lib/ctl/stk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/stk.h -------------------------------------------------------------------------------- /template/lib/ctl/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/str.h -------------------------------------------------------------------------------- /template/lib/ctl/ust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/ust.h -------------------------------------------------------------------------------- /template/lib/ctl/vec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/ctl/vec.h -------------------------------------------------------------------------------- /template/lib/hash-table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/lib/hash-table.h -------------------------------------------------------------------------------- /template/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/logo.png -------------------------------------------------------------------------------- /template/src/assets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/src/assets.c -------------------------------------------------------------------------------- /template/src/eprintln.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/src/eprintln.h -------------------------------------------------------------------------------- /template/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/src/main.c -------------------------------------------------------------------------------- /template/src/main.libuv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/src/main.libuv.c -------------------------------------------------------------------------------- /template/src/main.nanovg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/src/main.nanovg.c -------------------------------------------------------------------------------- /template/tools/cedro/README.en.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/tools/cedro/README.en.html -------------------------------------------------------------------------------- /template/tools/cedro/README.es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/tools/cedro/README.es.html -------------------------------------------------------------------------------- /template/tools/cedro/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/tools/cedro/array.h -------------------------------------------------------------------------------- /template/tools/cedro/cedro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/tools/cedro/cedro.c -------------------------------------------------------------------------------- /template/tools/cedro/cedrocc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/tools/cedro/cedrocc.c -------------------------------------------------------------------------------- /template/tools/cedro/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/tools/cedro/macros.h -------------------------------------------------------------------------------- /template/tools/cedro/macros/backstitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/tools/cedro/macros/backstitch.h -------------------------------------------------------------------------------- /template/tools/cedro/macros/defer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/tools/cedro/macros/defer.h -------------------------------------------------------------------------------- /template/tools/cedro/macros/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/tools/cedro/macros/slice.h -------------------------------------------------------------------------------- /template/tools/cedro/utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/template/tools/cedro/utf8.h -------------------------------------------------------------------------------- /test/backstitch-array-init.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | ristra_de_números @ [3]=44, [2]=11; 3 | -------------------------------------------------------------------------------- /test/backstitch-complex-prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/backstitch-complex-prefix.c -------------------------------------------------------------------------------- /test/backstitch-function-arguments-only-one.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | función(a, b @prefijo_..., c) 3 | -------------------------------------------------------------------------------- /test/backstitch-function-arguments-subsequent.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | función(a, @prefijo_... b, c) 3 | -------------------------------------------------------------------------------- /test/backstitch-left-associative-functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/backstitch-left-associative-functions.c -------------------------------------------------------------------------------- /test/backstitch-left-associative-object.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | objeto @ f(a) @ g(b); 3 | -------------------------------------------------------------------------------- /test/backstitch-libuv-prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/backstitch-libuv-prefix.c -------------------------------------------------------------------------------- /test/backstitch-nanovg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/backstitch-nanovg.c -------------------------------------------------------------------------------- /test/backstitch-nested.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/backstitch-nested.c -------------------------------------------------------------------------------- /test/backstitch-ngx-sqlite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/backstitch-ngx-sqlite.c -------------------------------------------------------------------------------- /test/backstitch-no-function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/backstitch-no-function.c -------------------------------------------------------------------------------- /test/backstitch-no-segments-prefix.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | Next(lector) @xmlTextReader...; 3 | -------------------------------------------------------------------------------- /test/backstitch-no-segments-suffix.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | get(&vector, índice) @..._Byte_vec; 3 | -------------------------------------------------------------------------------- /test/backstitch-object-comma-operator.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | int x = (objeto @ f(a), g(b)); 3 | -------------------------------------------------------------------------------- /test/backstitch-object-field.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | objeto.casilla @ f(a), g(b); 3 | -------------------------------------------------------------------------------- /test/backstitch-object-prefix.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | objeto @prefijo_... f(a), g(b); 3 | -------------------------------------------------------------------------------- /test/backstitch-object-suffix.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | objeto @..._sufijo f(a), g(b); 3 | -------------------------------------------------------------------------------- /test/backstitch-object.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | objeto @ f(a), g(b); 3 | -------------------------------------------------------------------------------- /test/backstitch-typedef-enum.c: -------------------------------------------------------------------------------- 1 | #pragma Cedro 1.0 2 | typedef enum { 3 | @PIEZA_... ESPACIO, PALABRA, NÚMERO 4 | } TipoDePieza; 5 | -------------------------------------------------------------------------------- /test/binary-literal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/binary-literal.c -------------------------------------------------------------------------------- /test/block-macros-semicolon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/block-macros-semicolon.c -------------------------------------------------------------------------------- /test/block-macros-typedef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/block-macros-typedef.c -------------------------------------------------------------------------------- /test/block-macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/block-macros.c -------------------------------------------------------------------------------- /test/defer-label-break-defer-keyword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/defer-label-break-defer-keyword.c -------------------------------------------------------------------------------- /test/defer-label-break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/defer-label-break.c -------------------------------------------------------------------------------- /test/defer-line-directives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/defer-line-directives.c -------------------------------------------------------------------------------- /test/defer-reserve-block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/defer-reserve-block.c -------------------------------------------------------------------------------- /test/defer-spinlocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/defer-spinlocks.c -------------------------------------------------------------------------------- /test/defer-text-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/defer-text-file.c -------------------------------------------------------------------------------- /test/foreach-enum-strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/foreach-enum-strings.c -------------------------------------------------------------------------------- /test/foreach-struct-print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/foreach-struct-print.c -------------------------------------------------------------------------------- /test/foreach-vector-container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/foreach-vector-container.c -------------------------------------------------------------------------------- /test/include-binary-embed-as-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/include-binary-embed-as-string.c -------------------------------------------------------------------------------- /test/include-binary-embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/include-binary-embed.c -------------------------------------------------------------------------------- /test/include-binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/include-binary.c -------------------------------------------------------------------------------- /test/label-break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/label-break.c -------------------------------------------------------------------------------- /test/parser-comments-strings-characters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/parser-comments-strings-characters.c -------------------------------------------------------------------------------- /test/reference/backstitch-array-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-array-init.c -------------------------------------------------------------------------------- /test/reference/backstitch-complex-prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-complex-prefix.c -------------------------------------------------------------------------------- /test/reference/backstitch-function-arguments-only-one.c: -------------------------------------------------------------------------------- 1 | función(a, prefijo_b, c) 2 | -------------------------------------------------------------------------------- /test/reference/backstitch-function-arguments-subsequent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-function-arguments-subsequent.c -------------------------------------------------------------------------------- /test/reference/backstitch-left-associative-functions.c: -------------------------------------------------------------------------------- 1 | cuatro(tres(dos(uno(x)))); 2 | -------------------------------------------------------------------------------- /test/reference/backstitch-left-associative-object.c: -------------------------------------------------------------------------------- 1 | g(f(objeto, a), b); 2 | -------------------------------------------------------------------------------- /test/reference/backstitch-libuv-prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-libuv-prefix.c -------------------------------------------------------------------------------- /test/reference/backstitch-nanovg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-nanovg.c -------------------------------------------------------------------------------- /test/reference/backstitch-nested.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-nested.c -------------------------------------------------------------------------------- /test/reference/backstitch-ngx-sqlite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-ngx-sqlite.c -------------------------------------------------------------------------------- /test/reference/backstitch-no-function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-no-function.c -------------------------------------------------------------------------------- /test/reference/backstitch-no-segments-prefix.c: -------------------------------------------------------------------------------- 1 | xmlTextReaderNext(lector); 2 | -------------------------------------------------------------------------------- /test/reference/backstitch-no-segments-suffix.c: -------------------------------------------------------------------------------- 1 | get_Byte_vec(&vector, índice); 2 | -------------------------------------------------------------------------------- /test/reference/backstitch-object-comma-operator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-object-comma-operator.c -------------------------------------------------------------------------------- /test/reference/backstitch-object-field.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-object-field.c -------------------------------------------------------------------------------- /test/reference/backstitch-object-prefix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-object-prefix.c -------------------------------------------------------------------------------- /test/reference/backstitch-object-suffix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-object-suffix.c -------------------------------------------------------------------------------- /test/reference/backstitch-object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-object.c -------------------------------------------------------------------------------- /test/reference/backstitch-typedef-enum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/backstitch-typedef-enum.c -------------------------------------------------------------------------------- /test/reference/binary-literal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/binary-literal.c -------------------------------------------------------------------------------- /test/reference/block-macros-semicolon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/block-macros-semicolon.c -------------------------------------------------------------------------------- /test/reference/block-macros-typedef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/block-macros-typedef.c -------------------------------------------------------------------------------- /test/reference/block-macros.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/block-macros.c -------------------------------------------------------------------------------- /test/reference/defer-label-break-defer-keyword.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/defer-label-break-defer-keyword.c -------------------------------------------------------------------------------- /test/reference/defer-label-break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/defer-label-break.c -------------------------------------------------------------------------------- /test/reference/defer-line-directives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/defer-line-directives.c -------------------------------------------------------------------------------- /test/reference/defer-reserve-block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/defer-reserve-block.c -------------------------------------------------------------------------------- /test/reference/defer-spinlocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/defer-spinlocks.c -------------------------------------------------------------------------------- /test/reference/defer-text-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/defer-text-file.c -------------------------------------------------------------------------------- /test/reference/foreach-enum-strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/foreach-enum-strings.c -------------------------------------------------------------------------------- /test/reference/foreach-struct-print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/foreach-struct-print.c -------------------------------------------------------------------------------- /test/reference/foreach-vector-container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/foreach-vector-container.c -------------------------------------------------------------------------------- /test/reference/include-binary-embed-as-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/include-binary-embed-as-string.c -------------------------------------------------------------------------------- /test/reference/include-binary-embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/include-binary-embed.c -------------------------------------------------------------------------------- /test/reference/include-binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/include-binary.c -------------------------------------------------------------------------------- /test/reference/label-break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/label-break.c -------------------------------------------------------------------------------- /test/reference/parser-comments-strings-characters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/parser-comments-strings-characters.c -------------------------------------------------------------------------------- /test/reference/slice-char-slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/slice-char-slice.c -------------------------------------------------------------------------------- /test/reference/slice-composite-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/slice-composite-array.c -------------------------------------------------------------------------------- /test/reference/slice-marquee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/reference/slice-marquee.c -------------------------------------------------------------------------------- /test/slice-char-slice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/slice-char-slice.c -------------------------------------------------------------------------------- /test/slice-composite-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/slice-composite-array.c -------------------------------------------------------------------------------- /test/slice-marquee.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentido-Labs/cedro/HEAD/test/slice-marquee.c -------------------------------------------------------------------------------- /test/small-file.txt: -------------------------------------------------------------------------------- 1 | ¡Hola mundo! 2 | --------------------------------------------------------------------------------