quote.c

来自「Linux下文件工具。」· C语言 代码 · 共 29 行

C
29
字号
/* Written by Paul Eggert <eggert@twinsun.com> */#if HAVE_CONFIG_H# include <config.h>#endif#if HAVE_STDDEF_H# include <stddef.h>  /* For the definition of size_t on windows w/MSVC.  */#endif#include <sys/types.h>#include <quotearg.h>#include <quote.h>/* Return an unambiguous printable representated, allocated in slot N,   for NAME, suitable for diagnostics.  */char const *quote_n (int n, char const *name){  return quotearg_n_style (n, locale_quoting_style, name);}/* Return an unambiguous printable representation of NAME, suitable   for diagnostics.  */char const *quote (char const *name){  return quote_n (0, name);}

⌨️ 快捷键说明

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