]> Kevux Git Server - controller/commit
Update: Initial import of the project with a skeleton based off of the example project.
authorKevin Day <kevin@kevux.org>
Wed, 20 Mar 2024 03:15:23 +0000 (22:15 -0500)
committerKevin Day <kevin@kevux.org>
Wed, 20 Mar 2024 03:15:23 +0000 (22:15 -0500)
commitfd9d837aa4c8a22e865519410cda8996afee96e0
tree37d5086e4e52fc8aed17272ad53fdbf827c897e2
Update: Initial import of the project with a skeleton based off of the example project.

This has some initial files copied over from the controller program from the fll project.
100 files changed:
bootstrap.sh [new file with mode: 0755]
build/documentation/man/man1/controller.1 [new file with mode: 0644]
build/documentation/man/man5/controller-actions.5 [new file with mode: 0644]
build/documentation/man/man5/controller-entry.5 [new file with mode: 0644]
build/documentation/man/man5/controller-exit.5 [new file with mode: 0644]
build/documentation/man/man5/controller-packet.5 [new file with mode: 0644]
build/documentation/man/man5/controller-rule.5 [new file with mode: 0644]
build/includes/program/controller/main/common.h [new file with mode: 0644]
build/includes/program/controller/main/common/define.h [new file with mode: 0644]
build/includes/program/controller/main/common/enumeration.h [new file with mode: 0644]
build/includes/program/controller/main/common/print.h [new file with mode: 0644]
build/includes/program/controller/main/common/string.h [new file with mode: 0644]
build/includes/program/controller/main/common/type.h [new file with mode: 0644]
build/includes/program/controller/main/controller.h [new file with mode: 0644]
build/includes/program/controller/main/print/data.h [new file with mode: 0644]
build/includes/program/controller/main/print/debug.h [new file with mode: 0644]
build/includes/program/controller/main/print/error.h [new file with mode: 0644]
build/includes/program/controller/main/print/message.h [new file with mode: 0644]
build/includes/program/controller/main/print/verbose.h [new file with mode: 0644]
build/includes/program/controller/main/print/warning.h [new file with mode: 0644]
build/includes/program/controller/main/signal.h [new file with mode: 0644]
build/includes/program/controller/main/thread.h [new file with mode: 0644]
build/stage/skeleton-settings.built [new file with mode: 0644]
build/stage/sources_documentation-settings.built [new file with mode: 0644]
build/stage/sources_headers-settings.built [new file with mode: 0644]
build/stage/sources_settings-settings.built [new file with mode: 0644]
data/build/defines [new file with mode: 0644]
data/build/dependencies [new file with mode: 0644]
data/build/fakefile [new file with mode: 0644]
data/build/settings [new file with mode: 0644]
data/build/settings.controller [new file with mode: 0644]
data/build/settings.init [new file with mode: 0644]
data/documentation/man/man1/controller.1 [new file with mode: 0644]
data/documentation/man/man5/controller-actions.5 [new file with mode: 0644]
data/documentation/man/man5/controller-entry.5 [new file with mode: 0644]
data/documentation/man/man5/controller-exit.5 [new file with mode: 0644]
data/documentation/man/man5/controller-packet.5 [new file with mode: 0644]
data/documentation/man/man5/controller-rule.5 [new file with mode: 0644]
documents/actions.txt [new file with mode: 0644]
documents/entry.txt [new file with mode: 0644]
documents/exit.txt [new file with mode: 0644]
documents/packet.txt [new file with mode: 0644]
documents/readme.bootstrap.txt [new file with mode: 0644]
documents/readme.build.txt [new file with mode: 0644]
documents/readme.txt [new file with mode: 0644]
documents/rule.txt [new file with mode: 0644]
documents/simulate.txt [new file with mode: 0644]
documents/time.txt [new file with mode: 0644]
install.sh [new file with mode: 0755]
licenses/cc-by-sa-4.0 [new file with mode: 0644]
licenses/copyrights.txt [new file with mode: 0644]
licenses/lgpl-2.1-or-later [new file with mode: 0644]
licenses/open-standard-license-1.0-or-later [new file with mode: 0644]
sources/c/controller/config.c [new file with mode: 0644]
sources/c/controller/config.h [new file with mode: 0644]
sources/c/controller/controller.c [new file with mode: 0644]
sources/c/controller/controller.h [new file with mode: 0644]
sources/c/controller/main.c [new file with mode: 0644]
sources/c/controller/main.h [new file with mode: 0644]
sources/c/init/config.c [new file with mode: 0644]
sources/c/init/config.h [new file with mode: 0644]
sources/c/init/init.c [new file with mode: 0644]
sources/c/init/init.h [new file with mode: 0644]
sources/c/init/main.c [new file with mode: 0644]
sources/c/init/main.h [new file with mode: 0644]
sources/c/main/common.c [new file with mode: 0644]
sources/c/main/common.h [new file with mode: 0644]
sources/c/main/common/define.c [new file with mode: 0644]
sources/c/main/common/define.h [new file with mode: 0644]
sources/c/main/common/enumeration.c [new file with mode: 0644]
sources/c/main/common/enumeration.h [new file with mode: 0644]
sources/c/main/common/print.c [new file with mode: 0644]
sources/c/main/common/print.h [new file with mode: 0644]
sources/c/main/common/string.c [new file with mode: 0644]
sources/c/main/common/string.h [new file with mode: 0644]
sources/c/main/common/type.c [new file with mode: 0644]
sources/c/main/common/type.h [new file with mode: 0644]
sources/c/main/controller.h [new file with mode: 0644]
sources/c/main/print/data.c [new file with mode: 0644]
sources/c/main/print/data.h [new file with mode: 0644]
sources/c/main/print/debug.c [new file with mode: 0644]
sources/c/main/print/debug.h [new file with mode: 0644]
sources/c/main/print/error.c [new file with mode: 0644]
sources/c/main/print/error.h [new file with mode: 0644]
sources/c/main/print/message.c [new file with mode: 0644]
sources/c/main/print/message.h [new file with mode: 0644]
sources/c/main/print/verbose.c [new file with mode: 0644]
sources/c/main/print/verbose.h [new file with mode: 0644]
sources/c/main/print/warning.c [new file with mode: 0644]
sources/c/main/print/warning.h [new file with mode: 0644]
sources/c/main/signal.c [new file with mode: 0644]
sources/c/main/signal.h [new file with mode: 0644]
sources/c/main/thread.c [new file with mode: 0644]
sources/c/main/thread.h [new file with mode: 0644]
specifications/entry.txt [new file with mode: 0644]
specifications/exit.txt [new file with mode: 0644]
specifications/packet.txt [new file with mode: 0644]
specifications/rule.txt [new file with mode: 0644]
specifications/task.txt [new file with mode: 0644]
specifications/time.txt [new file with mode: 0644]