Warning fix (Andrew Stanaski).
[nedit.git] / source / shift.h
blobba5ae23a523b92aff3cd02188e77dfd6e382eaa2
1 /* $Id: shift.h,v 1.4 2002/07/11 21:18:10 slobasso Exp $ */
3 #ifndef NEDIT_SHIFT_H_INCLUDED
4 #define NEDIT_SHIFT_H_INCLUDED
6 #include "nedit.h"
8 enum ShiftDirection {SHIFT_LEFT, SHIFT_RIGHT};
10 void ShiftSelection(WindowInfo *window, int direction, int byTab);
11 void UpcaseSelection(WindowInfo *window);
12 void DowncaseSelection(WindowInfo *window);
13 void FillSelection(WindowInfo *window);
14 char *ShiftText(char *text, int direction, int tabsAllowed, int tabDist,
15 int nChars, int *newLen);
17 #endif /* NEDIT_SHIFT_H_INCLUDED */