summaryrefslogtreecommitdiff
path: root/src/protocol/internal/ssh_crypto_common.h
blob: c50029c4086d4c405538ab0bcbefaa099863d615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef SSH_CRYPTO_COMMON_H
#define SSH_CRYPTO_COMMON_H

#ifdef __cplusplus
extern "C" {
#endif

	typedef struct
	{
		const char *name;
		void *f;
	} *name_sp, name_list[]; /* Do not write as *name_list!!! */

	int search_name(name_list l, const char *s);

#ifdef __cplusplus
}
#endif

#endif