• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #pragma once
2 
3 typedef enum {
4     ENUM_A,
5     ENUM_2,
6     ENUM_C,
7     ENUM_4,
8 } test_enum_t;
9 
10 static const float test_arr[] = {
11     1.2f,
12     2.3f,
13     3.4f,
14 };
15