├── .gitignore ├── .travis.yml ├── .version ├── ABOUT-NLS ├── AUTHORS ├── CONTRIBUTING.md ├── ChangeLog ├── INSTALL ├── LICENSE ├── Makefile.am ├── Makefile.in ├── README.md ├── TRANSLATE.md ├── USAGE.md ├── aclocal.m4 ├── compile ├── config.guess ├── config.in ├── config.rpath ├── config.sub ├── configure ├── configure.ac ├── depcomp ├── install-sh ├── m4 ├── codeset.m4 ├── extern-inline.m4 ├── fcntl-o.m4 ├── gettext.m4 ├── glibc2.m4 ├── glibc21.m4 ├── iconv.m4 ├── intdiv0.m4 ├── intl.m4 ├── intldir.m4 ├── intlmacosx.m4 ├── intmax.m4 ├── inttypes-pri.m4 ├── inttypes_h.m4 ├── lcmessage.m4 ├── lib-ld.m4 ├── lib-link.m4 ├── lib-prefix.m4 ├── lock.m4 ├── longlong.m4 ├── nls.m4 ├── po.m4 ├── printf-posix.m4 ├── progtest.m4 ├── size_max.m4 ├── stdint_h.m4 ├── threadlib.m4 ├── uintmax_t.m4 ├── visibility.m4 ├── wchar_t.m4 ├── wint_t.m4 └── xsize.m4 ├── missing ├── po ├── ChangeLog ├── LINGUAS ├── Makefile.in.in ├── Makevars ├── Makevars.template ├── POTFILES.in ├── Rules-quot ├── boldquot.sed ├── bric.pot ├── de_DE.gmo ├── de_DE.po ├── en@boldquot.header ├── en@quot.header ├── es_AR.gmo ├── es_AR.po ├── es_ES.gmo ├── es_ES.po ├── es_MX.gmo ├── es_MX.po ├── hu_HU.gmo ├── hu_HU.po ├── insert-header.sin ├── nl_NL.gmo ├── nl_NL.po ├── pt_BR.gmo ├── pt_BR.po ├── quot.sed ├── remove-potcdate.sin └── stamp-po └── src ├── bric.c ├── bric.h ├── editor.h ├── gettext.h ├── handling.c ├── handling.h ├── locking.c ├── locking.h ├── modules ├── syntax │ ├── bash.h │ ├── brain.h │ ├── ccpp.h │ ├── csharp.h │ ├── d.h │ ├── dockerfile.h │ ├── editor_syntax.h │ ├── go.h │ ├── haxe.h │ ├── html.h │ ├── java.h │ ├── javascript.h │ ├── makefile.h │ ├── pascal.h │ ├── php.h │ ├── python.h │ ├── ruby.h │ ├── rust.h │ ├── sql.h │ ├── swift.h │ └── syntax.h └── tag │ ├── documentation │ ├── tagfuncs.h │ └── tagstack.h └── tagstack.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/.travis.yml -------------------------------------------------------------------------------- /.version: -------------------------------------------------------------------------------- 1 | 0.0.3-dev 2 | -------------------------------------------------------------------------------- /ABOUT-NLS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/ABOUT-NLS -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/Makefile.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/README.md -------------------------------------------------------------------------------- /TRANSLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/TRANSLATE.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/USAGE.md -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/compile -------------------------------------------------------------------------------- /config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/config.guess -------------------------------------------------------------------------------- /config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/config.in -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/config.rpath -------------------------------------------------------------------------------- /config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/config.sub -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/configure.ac -------------------------------------------------------------------------------- /depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/depcomp -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/install-sh -------------------------------------------------------------------------------- /m4/codeset.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/codeset.m4 -------------------------------------------------------------------------------- /m4/extern-inline.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/extern-inline.m4 -------------------------------------------------------------------------------- /m4/fcntl-o.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/fcntl-o.m4 -------------------------------------------------------------------------------- /m4/gettext.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/gettext.m4 -------------------------------------------------------------------------------- /m4/glibc2.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/glibc2.m4 -------------------------------------------------------------------------------- /m4/glibc21.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/glibc21.m4 -------------------------------------------------------------------------------- /m4/iconv.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/iconv.m4 -------------------------------------------------------------------------------- /m4/intdiv0.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/intdiv0.m4 -------------------------------------------------------------------------------- /m4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/intl.m4 -------------------------------------------------------------------------------- /m4/intldir.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/intldir.m4 -------------------------------------------------------------------------------- /m4/intlmacosx.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/intlmacosx.m4 -------------------------------------------------------------------------------- /m4/intmax.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/intmax.m4 -------------------------------------------------------------------------------- /m4/inttypes-pri.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/inttypes-pri.m4 -------------------------------------------------------------------------------- /m4/inttypes_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/inttypes_h.m4 -------------------------------------------------------------------------------- /m4/lcmessage.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/lcmessage.m4 -------------------------------------------------------------------------------- /m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/lib-ld.m4 -------------------------------------------------------------------------------- /m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/lib-link.m4 -------------------------------------------------------------------------------- /m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /m4/lock.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/lock.m4 -------------------------------------------------------------------------------- /m4/longlong.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/longlong.m4 -------------------------------------------------------------------------------- /m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/nls.m4 -------------------------------------------------------------------------------- /m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/po.m4 -------------------------------------------------------------------------------- /m4/printf-posix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/printf-posix.m4 -------------------------------------------------------------------------------- /m4/progtest.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/progtest.m4 -------------------------------------------------------------------------------- /m4/size_max.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/size_max.m4 -------------------------------------------------------------------------------- /m4/stdint_h.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/stdint_h.m4 -------------------------------------------------------------------------------- /m4/threadlib.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/threadlib.m4 -------------------------------------------------------------------------------- /m4/uintmax_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/uintmax_t.m4 -------------------------------------------------------------------------------- /m4/visibility.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/visibility.m4 -------------------------------------------------------------------------------- /m4/wchar_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/wchar_t.m4 -------------------------------------------------------------------------------- /m4/wint_t.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/wint_t.m4 -------------------------------------------------------------------------------- /m4/xsize.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/m4/xsize.m4 -------------------------------------------------------------------------------- /missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/missing -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/Makefile.in.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/Makefile.in.in -------------------------------------------------------------------------------- /po/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/Makevars -------------------------------------------------------------------------------- /po/Makevars.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/Makevars.template -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/Rules-quot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/Rules-quot -------------------------------------------------------------------------------- /po/boldquot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/boldquot.sed -------------------------------------------------------------------------------- /po/bric.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/bric.pot -------------------------------------------------------------------------------- /po/de_DE.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/de_DE.gmo -------------------------------------------------------------------------------- /po/de_DE.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/de_DE.po -------------------------------------------------------------------------------- /po/en@boldquot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/en@boldquot.header -------------------------------------------------------------------------------- /po/en@quot.header: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/en@quot.header -------------------------------------------------------------------------------- /po/es_AR.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/es_AR.gmo -------------------------------------------------------------------------------- /po/es_AR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/es_AR.po -------------------------------------------------------------------------------- /po/es_ES.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/es_ES.gmo -------------------------------------------------------------------------------- /po/es_ES.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/es_ES.po -------------------------------------------------------------------------------- /po/es_MX.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/es_MX.gmo -------------------------------------------------------------------------------- /po/es_MX.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/es_MX.po -------------------------------------------------------------------------------- /po/hu_HU.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/hu_HU.gmo -------------------------------------------------------------------------------- /po/hu_HU.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/hu_HU.po -------------------------------------------------------------------------------- /po/insert-header.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/insert-header.sin -------------------------------------------------------------------------------- /po/nl_NL.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/nl_NL.gmo -------------------------------------------------------------------------------- /po/nl_NL.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/nl_NL.po -------------------------------------------------------------------------------- /po/pt_BR.gmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/pt_BR.gmo -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/quot.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/quot.sed -------------------------------------------------------------------------------- /po/remove-potcdate.sin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/po/remove-potcdate.sin -------------------------------------------------------------------------------- /po/stamp-po: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /src/bric.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/bric.c -------------------------------------------------------------------------------- /src/bric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/bric.h -------------------------------------------------------------------------------- /src/editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/editor.h -------------------------------------------------------------------------------- /src/gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/gettext.h -------------------------------------------------------------------------------- /src/handling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/handling.c -------------------------------------------------------------------------------- /src/handling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/handling.h -------------------------------------------------------------------------------- /src/locking.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/locking.c -------------------------------------------------------------------------------- /src/locking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/locking.h -------------------------------------------------------------------------------- /src/modules/syntax/bash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/bash.h -------------------------------------------------------------------------------- /src/modules/syntax/brain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/brain.h -------------------------------------------------------------------------------- /src/modules/syntax/ccpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/ccpp.h -------------------------------------------------------------------------------- /src/modules/syntax/csharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/csharp.h -------------------------------------------------------------------------------- /src/modules/syntax/d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/d.h -------------------------------------------------------------------------------- /src/modules/syntax/dockerfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/dockerfile.h -------------------------------------------------------------------------------- /src/modules/syntax/editor_syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/editor_syntax.h -------------------------------------------------------------------------------- /src/modules/syntax/go.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/go.h -------------------------------------------------------------------------------- /src/modules/syntax/haxe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/haxe.h -------------------------------------------------------------------------------- /src/modules/syntax/html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/html.h -------------------------------------------------------------------------------- /src/modules/syntax/java.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/java.h -------------------------------------------------------------------------------- /src/modules/syntax/javascript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/javascript.h -------------------------------------------------------------------------------- /src/modules/syntax/makefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/makefile.h -------------------------------------------------------------------------------- /src/modules/syntax/pascal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/pascal.h -------------------------------------------------------------------------------- /src/modules/syntax/php.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/php.h -------------------------------------------------------------------------------- /src/modules/syntax/python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/python.h -------------------------------------------------------------------------------- /src/modules/syntax/ruby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/ruby.h -------------------------------------------------------------------------------- /src/modules/syntax/rust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/rust.h -------------------------------------------------------------------------------- /src/modules/syntax/sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/sql.h -------------------------------------------------------------------------------- /src/modules/syntax/swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/swift.h -------------------------------------------------------------------------------- /src/modules/syntax/syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/syntax/syntax.h -------------------------------------------------------------------------------- /src/modules/tag/documentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/tag/documentation -------------------------------------------------------------------------------- /src/modules/tag/tagfuncs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/tag/tagfuncs.h -------------------------------------------------------------------------------- /src/modules/tag/tagstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/modules/tag/tagstack.h -------------------------------------------------------------------------------- /src/tagstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shnupta/bric/HEAD/src/tagstack.c --------------------------------------------------------------------------------