mirror of
https://github.com/opnsense/src.git
synced 2026-03-01 04:40:53 -05:00
17 lines
164 B
C
17 lines
164 B
C
|
|
/* Used in enum.c test */
|
||
|
|
|
||
|
|
enum Color {
|
||
|
|
Red,
|
||
|
|
Green,
|
||
|
|
Blue
|
||
|
|
};
|
||
|
|
|
||
|
|
enum Shape {
|
||
|
|
Square,
|
||
|
|
Triangle = 17,
|
||
|
|
Rhombus,
|
||
|
|
Circle
|
||
|
|
};
|
||
|
|
|
||
|
|
enum Shape aRoundShape = Circle;
|