1 /* $Id: shift.h,v 1.3 2001/02/26 23:38:03 edg Exp $ */
2 enum ShiftDirection
{SHIFT_LEFT
, SHIFT_RIGHT
};
4 void ShiftSelection(WindowInfo
*window
, int direction
, int byTab
);
5 void UpcaseSelection(WindowInfo
*window
);
6 void DowncaseSelection(WindowInfo
*window
);
7 void FillSelection(WindowInfo
*window
);
8 char *ShiftText(char *text
, int direction
, int tabsAllowed
, int tabDist
,
9 int nChars
, int *newLen
);