#ifndef POKER_H
#define POKER_H

#include "cards.h"

void init_game(void);
void deal(struct card pl[]);
void end_game(void);

#endif
