mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-04 19:37:18 -05:00
11 lines
154 B
C
11 lines
154 B
C
#ifndef _CRYPT_H_
|
|
#define _CRYPT_H_
|
|
|
|
#define CRYPT 1 /* file encryption enabled? */
|
|
|
|
#if CRYPT
|
|
void myencrypt( char *bptr, unsigned len) ;
|
|
#endif
|
|
|
|
#endif
|