#ifndef JSENCRYPT_H #define JSENCRYPT_H #define APPCONFIG_NAME "jsencrypt.conf" typedef struct _EncryptionTypes { char *typeID; char *filePath; char *functionName; struct _EncryptionTypes *next; } EncryptionTypes; char *expandTilda(const char *path); #endif