2013-05-20 01:16:08 -04:00
|
|
|
#ifndef _WORD_H_
|
|
|
|
#define _WORD_H_
|
|
|
|
|
2013-09-25 03:09:09 -04:00
|
|
|
#define WORDPRO 1
|
|
|
|
|
2013-05-20 01:16:08 -04:00
|
|
|
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) ;
|
2013-09-25 03:09:09 -04:00
|
|
|
#if WORDPRO
|
|
|
|
int gotobop( int f, int n) ;
|
|
|
|
int gotoeop( int f, int n) ;
|
2013-05-20 01:16:08 -04:00
|
|
|
int fillpara( int f, int n) ;
|
|
|
|
int justpara( int f, int n) ;
|
|
|
|
int killpara( int f, int n) ;
|
|
|
|
int wordcount( int f, int n) ;
|
2013-09-25 03:09:09 -04:00
|
|
|
#endif
|
2013-05-20 01:16:08 -04:00
|
|
|
|
|
|
|
#endif
|