c_structures/include/arch.h

10 lines
103 B
C
Raw Normal View History

2023-04-20 12:40:51 +02:00
#ifndef ARCH_H
#define ARCH_H
typedef struct arch{
int cost;
int a;
int b;
} arch;
#endif