Added Python (Thanks to Beholder) - it fails to build properly using my build system,
so there's a precompiled binary included, with a hack in Android.mk to make it work on NDK r4b
This commit is contained in:
14
project/jni/python/src/Python/formatter_string.c
Normal file
14
project/jni/python/src/Python/formatter_string.c
Normal file
@@ -0,0 +1,14 @@
|
||||
/***********************************************************************/
|
||||
/* Implements the string (as opposed to unicode) version of the
|
||||
built-in formatters for string, int, float. That is, the versions
|
||||
of int.__float__, etc., that take and return string objects */
|
||||
|
||||
#include "Python.h"
|
||||
#include "../Objects/stringlib/stringdefs.h"
|
||||
|
||||
#define FORMAT_STRING _PyBytes_FormatAdvanced
|
||||
#define FORMAT_LONG _PyLong_FormatAdvanced
|
||||
#define FORMAT_INT _PyInt_FormatAdvanced
|
||||
#define FORMAT_FLOAT _PyFloat_FormatAdvanced
|
||||
|
||||
#include "../Objects/stringlib/formatter.h"
|
||||
Reference in New Issue
Block a user