rldefs.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:4k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* rldefs.h -- an attempt to isolate some of the system-specific defines
  2.    for readline.  This should be included after any files that define
  3.    system-specific constants like _POSIX_VERSION or USG. */
  4. /* Copyright (C) 1987,1989 Free Software Foundation, Inc.
  5.    This file contains the Readline Library (the Library), a set of
  6.    routines for providing Emacs style line input to programs that ask
  7.    for it.
  8.    The Library is free software; you can redistribute it and/or modify
  9.    it under the terms of the GNU General Public License as published by
  10.    the Free Software Foundation; either version 1, or (at your option)
  11.    any later version.
  12.    The Library is distributed in the hope that it will be useful, but
  13.    WITHOUT ANY WARRANTY; without even the implied warranty of
  14.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15.    General Public License for more details.
  16.    The GNU General Public License is often shipped with GNU software, and
  17.    is generally kept in a file called COPYING or LICENSE.  If you do not
  18.    have a copy of the license, write to the Free Software Foundation,
  19.    675 Mass Ave, Cambridge, MA 02139, USA. */
  20. #if !defined (_RLDEFS_H_)
  21. #define _RLDEFS_H_
  22. #if defined (HAVE_CONFIG_H)
  23. #  include "config.h"
  24. #endif
  25. #if defined (_POSIX_VERSION) && !defined (TERMIOS_MISSING)
  26. #  define TERMIOS_TTY_DRIVER
  27. #else
  28. #  if defined (HAVE_TERMIO_H)
  29. #    define TERMIO_TTY_DRIVER
  30. #  else
  31. #    define NEW_TTY_DRIVER
  32. #  endif
  33. #endif
  34. /* Posix macro to check file in statbuf for directory-ness.
  35.    This requires that <sys/stat.h> be included before this test. */
  36. #if defined (S_IFDIR) && !defined (S_ISDIR)
  37. #  define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
  38. #endif
  39. /* Decide which flavor of the header file describing the C library
  40.    string functions to include and include it. */
  41. #if defined (HAVE_STRING_H)
  42. #  include <string.h>
  43. #else /* !HAVE_STRING_H */
  44. #  include <strings.h>
  45. #endif /* !HAVE_STRING_H */
  46. #if !defined (strchr) && !defined (__STDC__)
  47. extern char *strchr (), *strrchr ();
  48. #endif /* !strchr && !__STDC__ */
  49. #if defined (PREFER_STDARG)
  50. #  include <stdarg.h>
  51. #else
  52. #  if defined (PREFER_VARARGS)
  53. #    include <varargs.h>
  54. #  endif
  55. #endif
  56. #if defined (HAVE_STRCASECMP)
  57. #define _rl_stricmp strcasecmp
  58. #define _rl_strnicmp strncasecmp
  59. #else
  60. extern int _rl_stricmp (), _rl_strnicmp ();
  61. #endif
  62. #if !defined (emacs_mode)
  63. #  define no_mode -1
  64. #  define vi_mode 0
  65. #  define emacs_mode 1
  66. #endif
  67. /* If you cast map[key].function to type (Keymap) on a Cray,
  68.    the compiler takes the value of map[key].function and
  69.    divides it by 4 to convert between pointer types (pointers
  70.    to functions and pointers to structs are different sizes).
  71.    This is not what is wanted. */
  72. #if defined (CRAY)
  73. #  define FUNCTION_TO_KEYMAP(map, key) (Keymap)((int)map[key].function)
  74. #  define KEYMAP_TO_FUNCTION(data) (Function *)((int)(data))
  75. #else
  76. #  define FUNCTION_TO_KEYMAP(map, key) (Keymap)(map[key].function)
  77. #  define KEYMAP_TO_FUNCTION(data) (Function *)(data)
  78. #endif
  79. #ifndef savestring
  80. extern char *xmalloc ();
  81. #define savestring(x) strcpy (xmalloc (1 + strlen (x)), (x))
  82. #endif
  83. /* Possible values for _rl_bell_preference. */
  84. #define NO_BELL 0
  85. #define AUDIBLE_BELL 1
  86. #define VISIBLE_BELL 2
  87. /* Definitions used when searching the line for characters. */
  88. /* NOTE: it is necessary that opposite directions are inverses */
  89. #define FTO  1 /* forward to */
  90. #define BTO -1 /* backward to */
  91. #define FFIND  2 /* forward find */
  92. #define BFIND -2 /* backward find */
  93. /* Possible values for the found_quote flags word used by the completion
  94.    functions.  It says what kind of (shell-like) quoting we found anywhere
  95.    in the line. */
  96. #define RL_QF_SINGLE_QUOTE 0x1
  97. #define RL_QF_DOUBLE_QUOTE 0x2
  98. #define RL_QF_BACKSLASH 0x4
  99. /* Default readline line buffer length. */
  100. #define DEFAULT_BUFFER_SIZE 256
  101. #if !defined (STREQ)
  102. #define STREQ(a, b) (((a)[0] == (b)[0]) && (strcmp ((a), (b)) == 0))
  103. #define STREQN(a, b, n) (((a)[0] == (b)[0]) && (strncmp ((a), (b), (n)) == 0))
  104. #endif
  105. #if !defined (FREE)
  106. #  define FREE(x) if (x) free (x)
  107. #endif
  108. /* CONFIGURATION SECTION */
  109. #include "rlconf.h"
  110. #endif /* !_RLDEFS_H_ */