~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_rsamepos.c

Renamed strings to mystrings, for include/lib naming consistency.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
/* As mi_rsame but supply a position */
18
18
 
19
19
#include "myisamdef.h"
20
 
#include <drizzled/util/test.h>
21
 
 
22
20
 
23
21
 
24
22
        /*
29
27
        ** HA_ERR_END_OF_FILE   = End of file
30
28
        */
31
29
 
32
 
int mi_rsame_with_pos(MI_INFO *info, unsigned char *record, int inx, my_off_t filepos)
 
30
int mi_rsame_with_pos(MI_INFO *info, uchar *record, int inx, my_off_t filepos)
33
31
{
34
32
  if (inx < -1 ||
35
33
      (inx >= 0 && ! mi_is_key_active(info->s->state.key_map, inx)))