You've already forked termux-packages
mirror of
https://github.com/izzy2lost/termux-packages.git
synced 2026-03-26 17:00:19 -07:00
13 lines
159 B
C
13 lines
159 B
C
#ifndef CRYPT_H_INCLUDED
|
|
#define CRYPT_H_INCLUDED
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
char* crypt(const char* key, const char* salt);
|
|
|
|
__END_DECLS
|
|
|
|
#endif
|