mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-14 16:46:04 -05:00
19 lines
425 B
C
19 lines
425 B
C
#ifndef _WORD_H_
|
|
#define _WORD_H_
|
|
|
|
int wrapword( int f, int n) ;
|
|
int backword( int f, int n) ;
|
|
int forwword( int f, int n) ;
|
|
int upperword( int f, int n) ;
|
|
int lowerword( int f, int n) ;
|
|
int capword( int f, int n) ;
|
|
int delfword( int f, int n) ;
|
|
int delbword( int f, int n) ;
|
|
int inword( void) ;
|
|
int fillpara( int f, int n) ;
|
|
int justpara( int f, int n) ;
|
|
int killpara( int f, int n) ;
|
|
int wordcount( int f, int n) ;
|
|
|
|
#endif
|