mirror of
https://github.com/peter-tanner/Systems-programming-labs.git
synced 2024-11-30 17:10:30 +08:00
6 lines
153 B
C
6 lines
153 B
C
#ifndef _SUPERLOOP_H
|
|
#define _SUPERLOOP_H
|
|
|
|
extern void superloop(int depth, int start, int end, int increment, void (*function)(int, int (*)[]));
|
|
|
|
#endif |