Where Online Learning is simpler!
The C and C++ Include Header Files
cat -n /usr/include/python3.14/audit.h
1 #ifndef _Py_AUDIT_H 2 #define _Py_AUDIT_H 3 #ifdef __cplusplus 4 extern "C" { 5 #endif 6 7 8 #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x030d0000 9 PyAPI_FUNC(int) PySys_Audit( 10 const char *event, 11 const char *argFormat, 12 ...); 13 14 PyAPI_FUNC(int) PySys_AuditTuple( 15 const char *event, 16 PyObject *args); 17 #endif 18 19 20 #ifndef Py_LIMITED_API 21 # define _Py_CPYTHON_AUDIT_H 22 # include "cpython/audit.h" 23 # undef _Py_CPYTHON_AUDIT_H 24 #endif 25 26 27 #ifdef __cplusplus 28 } 29 #endif 30 #endif /* !_Py_AUDIT_H */