~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/my_readline.h

  • Committer: Brian Aker
  • Date: 2008-08-10 01:37:46 UTC
  • Revision ID: brian@tangent.org-20080810013746-9hp3l1f59j9xdmm0
ulong cleanp in client apps

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
  char *start_of_line,*end_of_line;
24
24
  uint bufread;                 /* Number of bytes to get with each read(). */
25
25
  uint eof;
26
 
  ulong max_size;
27
 
  ulong read_length;            /* Length of last read string */
 
26
  uint32_t max_size;
 
27
  uint32_t read_length;         /* Length of last read string */
28
28
} LINE_BUFFER;
29
29
 
30
 
extern LINE_BUFFER *batch_readline_init(ulong max_size,FILE *file);
 
30
extern LINE_BUFFER *batch_readline_init(uint32_t max_size,FILE *file);
31
31
extern LINE_BUFFER *batch_readline_command(LINE_BUFFER *buffer, char * str);
32
32
extern char *batch_readline(LINE_BUFFER *buffer);
33
33
extern void batch_readline_end(LINE_BUFFER *buffer);