Imported from ../bash-2.05b.tar.gz.
[platform/upstream/bash.git] / builtins.h
index e97fa04..53fb527 100644 (file)
 /* The thing that we build the array of builtins out of. */
 struct builtin {
   char *name;                  /* The name that the user types. */
-  sh_builtin_func_t *function;         /* The address of the invoked function. */
+  sh_builtin_func_t *function; /* The address of the invoked function. */
   int flags;                   /* One of the #defines above. */
-  char **long_doc;             /* NULL terminated array of strings. */
-  char *short_doc;             /* Short version of documenation. */
+  char * const *long_doc;      /* NULL terminated array of strings. */
+  const char *short_doc;       /* Short version of documenation. */
   char *handle;                        /* for future use */
 };