Systems-programming-labs/Week 4/superloop/superloop.h

6 lines
153 B
C
Raw Permalink Normal View History

2021-08-14 14:23:24 +08:00
#ifndef _SUPERLOOP_H
#define _SUPERLOOP_H
extern void superloop(int depth, int start, int end, int increment, void (*function)(int, int (*)[]));
#endif