Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-03-13 09:20:58

0001 #ifndef Py_INTERNAL_FORMAT_H
0002 #define Py_INTERNAL_FORMAT_H
0003 #ifdef __cplusplus
0004 extern "C" {
0005 #endif
0006 
0007 #ifndef Py_BUILD_CORE
0008 #  error "this header requires Py_BUILD_CORE define"
0009 #endif
0010 
0011 /* Format codes
0012  * F_LJUST      '-'
0013  * F_SIGN       '+'
0014  * F_BLANK      ' '
0015  * F_ALT        '#'
0016  * F_ZERO       '0'
0017  */
0018 #define F_LJUST (1<<0)
0019 #define F_SIGN  (1<<1)
0020 #define F_BLANK (1<<2)
0021 #define F_ALT   (1<<3)
0022 #define F_ZERO  (1<<4)
0023 
0024 #ifdef __cplusplus
0025 }
0026 #endif
0027 #endif /* !Py_INTERNAL_FORMAT_H */