mirror of
				https://github.com/python/cpython.git
				synced 2025-11-03 19:34:08 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			221 B
		
	
	
	
		
			C
		
	
	
	
	
	
 | 
						|
/* os module interface */
 | 
						|
 | 
						|
#ifndef Py_OSMODULE_H
 | 
						|
#define Py_OSMODULE_H
 | 
						|
#ifdef __cplusplus
 | 
						|
extern "C" {
 | 
						|
#endif
 | 
						|
 | 
						|
PyAPI_FUNC(PyObject *) PyOS_FSPath(PyObject *path);
 | 
						|
 | 
						|
#ifdef __cplusplus
 | 
						|
}
 | 
						|
#endif
 | 
						|
#endif /* !Py_OSMODULE_H */
 |