Where Online Learning is simpler!
The C and C++ Include Header Files
cat -n /usr/include/python3.14/internal/pycore_pathconfig.h
1 #ifndef Py_INTERNAL_PATHCONFIG_H 2 #define Py_INTERNAL_PATHCONFIG_H 3 #ifdef __cplusplus 4 extern "C" { 5 #endif 6 7 #ifndef Py_BUILD_CORE 8 # error "this header requires Py_BUILD_CORE define" 9 #endif 10 11 // Export for '_testinternalcapi' shared extension 12 PyAPI_FUNC(void) _PyPathConfig_ClearGlobal(void); 13 14 extern PyStatus _PyPathConfig_ReadGlobal(PyConfig *config); 15 extern PyStatus _PyPathConfig_UpdateGlobal(const PyConfig *config); 16 extern const wchar_t * _PyPathConfig_GetGlobalModuleSearchPath(void); 17 18 extern int _PyPathConfig_ComputeSysPath0( 19 const PyWideStringList *argv, 20 PyObject **path0); 21 22 23 #ifdef __cplusplus 24 } 25 #endif 26 #endif /* !Py_INTERNAL_PATHCONFIG_H */