summary refs log tree commit diff stats
path: root/c/resistor-color/src/resistor_color.h
diff options
context:
space:
mode:
Diffstat (limited to 'c/resistor-color/src/resistor_color.h')
-rw-r--r--c/resistor-color/src/resistor_color.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/c/resistor-color/src/resistor_color.h b/c/resistor-color/src/resistor_color.h
new file mode 100644
index 0000000..216bdd0
--- /dev/null
+++ b/c/resistor-color/src/resistor_color.h
@@ -0,0 +1,12 @@
+#ifndef RESISTOR_COLOR_H
+#define RESISTOR_COLOR_H
+
+typedef enum {
+    BLACK, BROWN, RED, ORANGE, YELLOW, GREEN, BLUE, VIOLET, GREY, WHITE
+} resistor_band_t;
+
+int color_code(resistor_band_t);
+
+const resistor_band_t* colors(void);
+
+#endif