mirror of
https://github.com/rfivet/uemacs.git
synced 2024-11-17 18:16:22 -05:00
11 lines
153 B
C
11 lines
153 B
C
#ifndef _CRYPT_H_
|
|
#define _CRYPT_H_
|
|
|
|
#ifndef CRYPT
|
|
#error CRYPT should be defined
|
|
#elif CRYPT
|
|
void myencrypt( char *bptr, unsigned len) ;
|
|
#endif
|
|
|
|
#endif
|