mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-04 11:27:17 -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
|