ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/strlcpy.h
Revision: 1.1
Committed: 2002-07-31T16:46:14Z (21 years, 11 months ago) by cebix
Content type: text/plain
Branch: MAIN
CVS Tags: nigel-build-19, nigel-build-12, nigel-build-13, nigel-build-16, nigel-build-17, nigel-build-15, HEAD
Log Message:
- it is now possible to make the serial drivers pipe their input/output
  to programs by using a '|' followed by a command line as the modem or
  printer port setting (instead of a device name like '/dev/ttyS0')
  [Brian Johnson]
- the option "--config FILE" tells B2 to use a different config file

File Contents

# Content
1 /* $Id: strlcpy.h,v 1.2 2001/02/09 01:55:36 djm Exp $ */
2
3 #ifndef _BSD_STRLCPY_H
4 #define _BSD_STRLCPY_H
5
6 #include "config.h"
7 #ifndef HAVE_STRLCPY
8 #include <sys/types.h>
9 size_t strlcpy(char *dst, const char *src, size_t siz);
10 #endif /* !HAVE_STRLCPY */
11
12 #endif /* _BSD_STRLCPY_H */