mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-16 09:36:29 -05:00
13 lines
235 B
C
13 lines
235 B
C
|
#ifndef _REGION_H_
|
||
|
#define _REGION_H_
|
||
|
|
||
|
#include "estruct.h"
|
||
|
|
||
|
int killregion( int f, int n) ;
|
||
|
int copyregion( int f, int n) ;
|
||
|
int lowerregion( int f, int n) ;
|
||
|
int upperregion( int f, int n) ;
|
||
|
int getregion( struct region *rp) ;
|
||
|
|
||
|
#endif
|