Skip to content

Commit 5e09f05

Browse files
committed
refactor: consistent enum\struct naming style
1 parent e31704c commit 5e09f05

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/main.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
{ \
1212
fprintf(stderr, \
1313
#method " : GraphBLAS error %d in file %s at line %d\n", \
14-
_info,__FILE__, __LINE__); \
14+
_info, __FILE__, __LINE__); \
1515
return _info; \
1616
} \
1717
}
@@ -34,26 +34,26 @@ typedef enum
3434

3535
// vertices
3636

37-
typedef struct User
37+
typedef struct
3838
{
3939
Gender gender;
4040
uint8_t age;
4141
} User;
4242

43-
typedef struct Card
43+
typedef struct
4444
{
4545
System system;
4646
double limit;
4747
} Card;
4848

4949
// edges
5050

51-
typedef struct EdgeOwns
51+
typedef struct
5252
{
5353
int days;
5454
} EdgeOwns;
5555

56-
typedef struct EdgeTX
56+
typedef struct
5757
{
5858
double sum;
5959
uint32_t count;

0 commit comments

Comments
 (0)