📄 dosfile.m4
字号:
# Check to see if we use dir\file name conventtion# If so, set macro HAVE_DOS_FILE_NAMES# Also set the macro HAVE_DOS_FILE_CONTENTS for now,# since don't know of a good way to independently check this.dnl AC_DOSFILE()AC_DEFUN(AC_DOSFILE,[ AC_CACHE_CHECK([for dos file convention], ac_cv_dosfile, [if test -d ".\."; then ac_cv_dosfile=yes else ac_cv_dosfile=no fi ]) if test $ac_cv_dosfile = yes; then AC_DEFINE(HAVE_DOS_FILE_NAMES, 1, [Define if your OS uses backslashes as directory separators]) AC_DEFINE(HAVE_DOS_FILE_CONTENTS, 1, [Define if text file lines end in CRLF.]) fi])
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -