1 /* $NetBSD: split_at.h,v 1.1.1.1 2009/06/23 10:09:01 tron Exp $ */ 2 3 #ifndef _SPLIT_AT_H_INCLUDED_ 4 #define _SPLIT_AT_H_INCLUDED_ 5 6 /*++ 7 /* NAME 8 /* split_at 3h 9 /* SUMMARY 10 /* trivial token splitter 11 /* SYNOPSIS 12 /* #include <split_at.h> 13 /* DESCRIPTION 14 /* .nf 15 16 /* External interface. */ 17 18 extern char *split_at(char *, int); 19 extern char *split_at_right(char *, int); 20 21 /* HISTORY 22 /* .ad 23 /* .fi 24 /* A split_at() routine appears in the TCP Wrapper software 25 /* by Wietse Venema. 26 /* LICENSE 27 /* .ad 28 /* .fi 29 /* The Secure Mailer license must be distributed with this software. 30 /* AUTHOR(S) 31 /* Wietse Venema 32 /* IBM T.J. Watson Research 33 /* P.O. Box 704 34 /* Yorktown Heights, NY 10598, USA 35 /*--*/ 36 37 #endif 38