android_mt6572_jiabo/ndk/tests/build/test-gnustl-chrono/jni/hanoi.h
2025-09-05 16:56:03 +08:00

15 lines
235 B
C

#ifndef HANOI_H
#define HANOI_H
#if defined(__cplusplus)
extern "C" {
#endif
extern void hanoi(int from, int to, int mid, int n,
void (*callback)(int, int));
#if defined(__cplusplus)
}
#endif
#endif /* HANOI_H */