Files
android_development/ndk/samples/module-exports/jni/foo/foo.c
David 'Digit' Turner fcefaf88ab Add a sample to demonstrate module exports in the NDK.
+ add .gitignore

Change-Id: Ifa160316e37cf201099ab0d8d89fdd375ee3eb59
2010-06-10 16:56:16 -07:00

21 lines
391 B
C

#include "foo.h"
#include <android/log.h>
/* FOO should be defined to '2' when building foo.c */
#ifndef FOO
#error FOO is not defined here !
#endif
#if FOO != 2
#error FOO is incorrectly defined here !
#endif
#define LOG_TAG "libfoo"
#define LOGI(...) __android_log_print(ANDROID_LOG_INFO,LOG_TAG,__VA_ARGS__)
int foo(int x)
{
LOGI("foo(%d) called !", x);
return x+1;
}