1 /*
2  * 	User text formatting functions
3  * 	Copyright
4  *		(C) 1992 Joseph H. Allen
5  *
6  *	This file is part of JOE (Joe's Own Editor)
7  */
8 #ifndef _JOE_UFORMAT_H
9 #define _JOE_UFORMAT_H 1
10 
11 #ifdef EXTERN_CMD_C
12 __IDSTRING(rcsid_uformat_h, "$MirOS: contrib/code/jupp/uformat.h,v 1.6 2017/12/06 23:17:36 tg Exp $");
13 #endif
14 
15 int ucenter(BW *bw);
16 P *pbop(P *p);
17 P *peop(P *p);
18 int ubop(BW *bw);
19 int ueop(BW *bw);
20 void wrapword(P *p, long int indent, int french, unsigned char *indents);
21 int uformat(BW *bw);
22 int ufmtblk(BW *bw);
23 
24 #endif
25