15 lines
217 B
C
Raw Permalink Normal View History

2020-05-03 14:10:04 +02:00
// M111 - TP10_PROG-PROC
// Composant M111_point
// Header
typedef struct {
int champX;
int champY;
char champN;
}
lePoint;
lePoint lePointCreation (int x, int y, char nom);
void lePointAfficher (lePoint unPoint);