summaryrefslogtreecommitdiffstats
path: root/src/util/split_at.h
blob: 2d03ebb2c71c545b4dcff425e37f7269b8d6c71b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef _SPLIT_AT_H_INCLUDED_
#define _SPLIT_AT_H_INCLUDED_

/*++
/* NAME
/*	split_at 3h
/* SUMMARY
/*	trivial token splitter
/* SYNOPSIS
/*	#include <split_at.h>
/* DESCRIPTION
/* .nf

 /* External interface. */

extern char *split_at(char *, int);
extern char *split_at_right(char *, int);

/* HISTORY
/* .ad
/* .fi
/*	A split_at() routine appears in the TCP Wrapper software
/*	by Wietse Venema.
/* LICENSE
/* .ad
/* .fi
/*	The Secure Mailer license must be distributed with this software.
/* AUTHOR(S)
/*	Wietse Venema
/*	IBM T.J. Watson Research
/*	P.O. Box 704
/*	Yorktown Heights, NY 10598, USA
/*--*/

#endif