~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/my_readline.h

  • Committer: Monty Taylor
  • Date: 2009-02-21 03:33:30 UTC
  • mfrom: (895 drizzle)
  • mto: (896.2.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 898.
  • Revision ID: mordred@inaugust.com-20090221033330-v110f94679dej04p
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
  char *buffer;                 /* The buffer itself, grown as needed. */
21
21
  char *end;                    /* Pointer at buffer end */
22
22
  char *start_of_line,*end_of_line;
23
 
  uint bufread;                 /* Number of bytes to get with each read(). */
24
 
  uint eof;
 
23
  uint32_t bufread;                     /* Number of bytes to get with each read(). */
 
24
  uint32_t eof;
25
25
  uint32_t max_size;
26
26
  uint32_t read_length;         /* Length of last read string */
27
27
} LINE_BUFFER;