summaryrefslogtreecommitdiff
path: root/support/dktools/dk3stm.h
diff options
context:
space:
mode:
Diffstat (limited to 'support/dktools/dk3stm.h')
-rw-r--r--support/dktools/dk3stm.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/support/dktools/dk3stm.h b/support/dktools/dk3stm.h
deleted file mode 100644
index aacdcc7be0..0000000000
--- a/support/dktools/dk3stm.h
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
-Copyright 2020, Dirk Krause. All rights reserved.
-SPDX-License-Identifier: BSD-3-Clause
-*/
-
-#ifndef DK3STM_H_INCLUDED
-/** Protection against multiple inclusions. */
-#define DK3STM_H_INCLUDED 1
-
-/** Results when adding input to a state machine
-*/
-enum {
- /** Input accepted, no result yet, continue.
- */
- DK3_STM_ACCEPT = 0,
-
- /** Input accepted, result found.
- */
- DK3_STM_FINISHED ,
-
- /** Can not accept input.
- */
- DK3_STM_ERROR
-};
-
-#endif
-/* ifndef DK3STM_H_INCLUDED */
-