You are on page 1of 1

#ifndef KARTE_H

#define KARTE_H

typedef struct karte {


int wert;
char typ[8];
char farbe[6];
struct karte* next;
}KARTE;
typedef struct player{
int player_hand;
int player_ace ;
}PLAYER;
typedef struct dealer {
int dealer_hand;
int dealer_ace;
}DEALER;

#endif// !KARTE_H

You might also like