PageRenderTime 26ms CodeModel.GetById 22ms app.highlight 3ms RepoModel.GetById 0ms app.codeStats 0ms

/arch/um/drivers/ssl.h

https://bitbucket.org/cresqo/cm7-p500-kernel
C Header | 13 lines | 5 code | 4 blank | 4 comment | 0 complexity | 26bdd651f2ca64a2529567bbc31df125 MD5 | raw file
Possible License(s): LGPL-2.0, AGPL-1.0, GPL-2.0
 1/* 
 2 * Copyright (C) 2000 Jeff Dike (jdike@karaya.com)
 3 * Licensed under the GPL
 4 */
 5
 6#ifndef __SSL_H__
 7#define __SSL_H__
 8
 9extern int ssl_read(int fd, int line);
10extern void ssl_receive_char(int line, char ch);
11
12#endif
13