20 lines
207 B
C
20 lines
207 B
C
//
|
|
// Created by nano on 5/1/25.
|
|
//
|
|
|
|
#ifndef CELL_H
|
|
#define CELL_H
|
|
|
|
|
|
typedef struct cell {
|
|
int x;
|
|
int y;
|
|
} cell;
|
|
|
|
int cell_equals(cell a,cell b);
|
|
void cell_add(cell *c, cell a, cell b);
|
|
|
|
|
|
|
|
#endif //CELL_H
|