~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/my_readline.h

  • Committer: Brian Aker
  • Date: 2009-02-20 22:48:37 UTC
  • Revision ID: brian@tangent.org-20090220224837-fw5wrf46n4ru3e6a
First pass of stripping uint

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;