Systems-programming-labs/Week 4/superloop/superloop.h
2021-08-14 14:27:56 +08:00

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