This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
sys_prog/midterm/tank_control/tank_control.h

16 lines
335 B
C

#ifndef TANK_CONTROL_H_INCLUDED
#define TANK_CONTROL_H_INCLUDED
extern void clear();
extern void change_bottle_capacity(unsigned int c);
extern void change_tank(unsigned int c);
extern void add(unsigned int c);
extern unsigned int ship_out_bottles();
extern unsigned int get_wastes();
extern unsigned int get_tank_level();
#endif