format

来自「source of perl for linux application,」· 代码 · 共 55 行

TXT
55
字号
####################################################################################  $Revision: 6 $##  $Author: mhx $##  $Date: 2007/01/02 12:32:33 +0100 $######################################################################################  Version 3.x, Copyright (C) 2004-2007, Marcus Holland-Moritz.##  Version 2.x, Copyright (C) 2001, Paul Marquess.##  Version 1.x, Copyright (C) 1999, Kenneth Albanowski.####  This program is free software; you can redistribute it and/or##  modify it under the same terms as Perl itself.##################################################################################=provides/^#\s*define\s+(\w+)/=implementation#ifndef IVdf#  if IVSIZE == LONGSIZE#    define	IVdf      "ld"#    define	UVuf      "lu"#    define	UVof      "lo"#    define	UVxf      "lx"#    define	UVXf      "lX"#  else#    if IVSIZE == INTSIZE#      define	IVdf      "d"#      define	UVuf      "u"#      define	UVof      "o"#      define	UVxf      "x"#      define	UVXf      "X"#    endif#  endif#endif#ifndef NVef#  if defined(USE_LONG_DOUBLE) && defined(HAS_LONG_DOUBLE) && \      defined(PERL_PRIfldbl) /* Not very likely, but let's try anyway. */#    define NVef          PERL_PRIeldbl#    define NVff          PERL_PRIfldbl#    define NVgf          PERL_PRIgldbl#  else#    define NVef          "e"#    define NVff          "f"#    define NVgf          "g"#  endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?