Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
bgColor#ccccff
static int yy_string_get() {
  register char *string;
  register int c;

  string = bash_input.location.string;
  c = EOF;

  /* If the string doesn't exist, or is empty, EOF found. */
  if (string && *string) {
      /* cast to unsigned type */
      c = (unsigned char)*string++;  /* cast to unsigned type */

      bash_input.location.string = string;
    }
  return (c);
}

...