| 918 | |
| 919 | extern "C" |
| 920 | const char *OPS_GetString(void) |
| 921 | { |
| 922 | PyObject *o = PyTuple_GetItem(currentArgs,currentArg); |
| 923 | currentArg++; |
| 924 | #if PY_MAJOR_VERSION==2 |
| 925 | return PyString_AS_STRING(o); |
| 926 | #elif PY_MAJOR_VERSION==3 |
| 927 | return PyUnicode_AS_DATA(o); |
| 928 | #endif |
| 929 | } |
| 930 | |
| 931 | extern "C" int OPS_GetNDM() |
| 932 | { |
no outgoing calls
no test coverage detected