Design Pattern Examples
Overview of object-oriented design patterns
helpers/checkforkey.h
Go to the documentation of this file.
1
4
5#pragma once
6#ifndef __CHECKFORKEY_H__
7#define __CHECKFORKEY_H__
8
9#include <stdbool.h>
10
16bool checkforkey(void);
17
18#endif // __CHECKFORKEY_H__
bool checkforkey(void)
Determine if a key has been pressed on the keyboard.
Definition: checkforkey.c:39