Design Pattern Examples
Overview of object-oriented design patterns
helpers/readkey.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __READKEY_H__
8#define __READKEY_H__
9
15int readkey(void);
16
17
18#endif //__READKEY_H__
int readkey(void)
Read a key from the keyboard, blocking if no key is pressed. Use the checkforkey() function to see if...
Definition: readkey.c:14