11 lines
188 B
C
11 lines
188 B
C
|
#include "fichier_A1.h"
|
||
|
/// Header_B1
|
||
|
typedef struct
|
||
|
{
|
||
|
int champX;
|
||
|
int champY;
|
||
|
} structB1;
|
||
|
structB1 structB1Creation (int x, int y);
|
||
|
void structB1Afficher (structB1 x);
|
||
|
|