Home | History | Annotate | Line # | Download | only in string
Lint_strncpy.c revision 1.1.124.1
      1  1.1.124.1  perseant /*	$NetBSD: Lint_strncpy.c,v 1.1.124.1 2025/08/02 05:54:42 perseant Exp $	*/
      2        1.1  matthias 
      3        1.1  matthias /*
      4        1.1  matthias  * This file placed in the public domain.
      5        1.1  matthias  * Matthias Pfaller, December 5, 1997.
      6        1.1  matthias  */
      7        1.1  matthias 
      8        1.1  matthias #include <string.h>
      9        1.1  matthias 
     10        1.1  matthias /*ARGSUSED*/
     11        1.1  matthias char *
     12  1.1.124.1  perseant strncpy(char *dst, const char *src, size_t n)
     13        1.1  matthias {
     14  1.1.124.1  perseant 	return NULL;
     15        1.1  matthias }
     16