comparison src/main.h @ 319:f9611a6cf0e2

Move file_sort_case_sensitive to ConfOptions.
author zas_
date Fri, 11 Apr 2008 22:27:54 +0000
parents b16b9b8979e5
children c74af1cbd61a
comparison
equal deleted inserted replaced
318:b16b9b8979e5 319:f9611a6cf0e2
171 171
172 void keyboard_scroll_calc(gint *x, gint *y, GdkEventKey *event); 172 void keyboard_scroll_calc(gint *x, gint *y, GdkEventKey *event);
173 gint key_press_cb(GtkWidget *widget, GdkEventKey *event, gpointer data); 173 gint key_press_cb(GtkWidget *widget, GdkEventKey *event, gpointer data);
174 void exit_program(void); 174 void exit_program(void);
175 175
176 #define CASE_SORT(a, b) ( (options->file_sort_case_sensitive) ? strcmp((a), (b)) : strcasecmp((a), (b)) )
177
176 178
177 #endif 179 #endif
178 180
179 181
180 182