]> andersk Git - openssh.git/blame - misc.h
- djm@cvs.openbsd.org 2004/05/08 00:21:31
[openssh.git] / misc.h
CommitLineData
58ae9cb8 1/* $OpenBSD: misc.h,v 1.14 2004/05/08 00:21:31 djm Exp $ */
23c2a7a5 2
42f11eb2 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 */
42f11eb2 14
58ae9cb8 15/* misc.c */
16
ac96ca42 17char *chop(char *);
18char *strdelim(char **);
19void set_nonblock(int);
20void unset_nonblock(int);
bcc0381e 21void set_nodelay(int);
ac96ca42 22int a2port(const char *);
23char *cleanhostname(char *);
24char *colon(char *);
25long convtime(const char *);
26
27struct passwd *pwcopy(struct passwd *);
42f11eb2 28
8a624ebf 29typedef struct arglist arglist;
30struct arglist {
762715ce 31 char **list;
32 int num;
33 int nalloc;
8a624ebf 34};
ac96ca42 35void addargs(arglist *, char *, ...) __attribute__((format(printf, 2, 3)));
07d80252 36
58ae9cb8 37/* tildexpand.c */
38
07d80252 39char *tilde_expand_filename(const char *, uid_t);
58ae9cb8 40
41/* readpass.c */
42
43#define RP_ECHO 0x0001
44#define RP_ALLOW_STDIN 0x0002
45#define RP_ALLOW_EOF 0x0004
46
47char *read_passphrase(const char *, int);
This page took 0.390923 seconds and 5 git commands to generate.