Design Pattern Examples
Overview of object-oriented design patterns
helpers/sleep.h
Go to the documentation of this file.
1
4
5#pragma once
6#ifndef __SLEEP_H__
7#define __SLEEP_H__
8
14void sleep(int milliseconds);
15
16
17#endif // __SLEEP_H__
18
void sleep(int milliseconds)
Sleep for the specified number of milliseconds. Does not return until after the sleep period.
Definition: sleep.c:21