add existing source
authorOlaf Wintermann <olaf.wintermann@gmail.com>
Wed, 5 Jan 2022 17:47:28 +0000 (18:47 +0100)
committerOlaf Wintermann <olaf.wintermann@gmail.com>
Wed, 5 Jan 2022 17:47:28 +0000 (18:47 +0100)
commit67b35790d6ab8581c96b3182e63eb2c0ffab5123
tree17fea15d340d1733d4eba581d80c7ad0e55e18ba
add existing source
54 files changed:
.gitignore [new file with mode: 0644]
Makefile [new file with mode: 0644]
application/Fsb.c [new file with mode: 0644]
application/Fsb.h [new file with mode: 0644]
application/FsbP.h [new file with mode: 0644]
application/Makefile [new file with mode: 0644]
application/main.c [new file with mode: 0644]
application/main.h [new file with mode: 0644]
application/player.c [new file with mode: 0644]
application/player.h [new file with mode: 0644]
application/window.c [new file with mode: 0644]
application/window.h [new file with mode: 0644]
configure [new file with mode: 0755]
make/Makefile.mk [new file with mode: 0644]
make/clang.mk [new file with mode: 0644]
make/configure.vm [new file with mode: 0644]
make/gcc.mk [new file with mode: 0644]
make/mingw.mk [new file with mode: 0644]
make/osx.mk [new file with mode: 0644]
make/package_unix.sh [new file with mode: 0755]
make/project.xml [new file with mode: 0644]
make/suncc.mk [new file with mode: 0644]
make/toolchain.sh [new file with mode: 0644]
make/windows.mk [new file with mode: 0644]
ucx/Makefile [new file with mode: 0644]
ucx/README [new file with mode: 0644]
ucx/allocator.c [new file with mode: 0644]
ucx/array.c [new file with mode: 0644]
ucx/avl.c [new file with mode: 0644]
ucx/buffer.c [new file with mode: 0644]
ucx/list.c [new file with mode: 0644]
ucx/logging.c [new file with mode: 0644]
ucx/map.c [new file with mode: 0644]
ucx/mempool.c [new file with mode: 0644]
ucx/properties.c [new file with mode: 0644]
ucx/stack.c [new file with mode: 0644]
ucx/string.c [new file with mode: 0644]
ucx/test.c [new file with mode: 0644]
ucx/ucx.c [new file with mode: 0644]
ucx/ucx/allocator.h [new file with mode: 0644]
ucx/ucx/array.h [new file with mode: 0644]
ucx/ucx/avl.h [new file with mode: 0644]
ucx/ucx/buffer.h [new file with mode: 0644]
ucx/ucx/list.h [new file with mode: 0644]
ucx/ucx/logging.h [new file with mode: 0644]
ucx/ucx/map.h [new file with mode: 0644]
ucx/ucx/mempool.h [new file with mode: 0644]
ucx/ucx/properties.h [new file with mode: 0644]
ucx/ucx/stack.h [new file with mode: 0644]
ucx/ucx/string.h [new file with mode: 0644]
ucx/ucx/test.h [new file with mode: 0644]
ucx/ucx/ucx.h [new file with mode: 0644]
ucx/ucx/utils.h [new file with mode: 0644]
ucx/utils.c [new file with mode: 0644]