OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hanoi
(Results
1 - 4
of
4
) sorted by null
/ndk/tests/build/test-gnustl-chrono/jni/
hanoi.h
8
extern void
hanoi
(int from, int to, int mid, int n,
hanoi.c
1
#include "
hanoi
.h"
3
void
hanoi
(int from, int to, int mid, int n, void (*callback)(int, int)) {
function
7
hanoi
(from, mid, to, n - 1, callback);
9
hanoi
(mid, to, from, n - 1, callback);
Android.mk
5
LOCAL_SRC_FILES := main.cpp
hanoi
.c
main.cpp
4
#include "
hanoi
.h"
15
hanoi
(0, 2, 1, 25, &hanoi_callback);
Completed in 81 milliseconds