mirror of
https://github.com/opnsense/src.git
synced 2026-02-21 00:40:33 -05:00
16 lines
164 B
C
16 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;
|