18 lines
975 B
C
18 lines
975 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* timedloop.h :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/03/26 15:02:16 by mcolonna #+# #+# */
|
|
/* Updated: 2024/03/26 15:02:50 by mcolonna ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#ifndef TIMEDLOOP_H
|
|
# define TIMEDLOOP_H
|
|
|
|
void timedloop(void (*f)(void));
|
|
|
|
#endif
|