]> andersk Git - openssh.git/blame_incremental - misc.h
- djm@cvs.openbsd.org 2001/03/13 22:42:54
[openssh.git] / misc.h
... / ...
CommitLineData
1/* $OpenBSD: misc.h,v 1.3 2001/02/22 21:59:44 markus Exp $ */
2
3/*
4 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
7 *
8 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
13 */
14/* remove newline at end of string */
15char *chop(char *s);
16
17/* return next token in configuration line */
18char *strdelim(char **s);
19
20/* set filedescriptor to non-blocking */
21void set_nonblock(int fd);
22
23struct passwd * pwcopy(struct passwd *pw);
24
25/* wrapper for signal interface */
26typedef void (*mysig_t)(int);
27mysig_t mysignal(int sig, mysig_t act);
This page took 0.03667 seconds and 5 git commands to generate.