string.3 (32eef9aeb1f39a1623cea55da147c89abbd5b9a5) | string.3 (8269e8c887accbffa1e193394fc22fde8d0973e3) |
---|---|
1.\" Copyright (c) 1990, 1991, 1993 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" This code is derived from software contributed to Berkeley by 5.\" Chris Torek. 6.\" Redistribution and use in source and binary forms, with or without 7.\" modification, are permitted provided that the following conditions 8.\" are met: --- 24 unchanged lines hidden (view full) --- 33.\" 34.\" @(#)string.3 8.2 (Berkeley) 12/11/93 35.\" $FreeBSD$ 36.\" 37.Dd December 11, 1993 38.Dt STRING 3 39.Os 40.Sh NAME | 1.\" Copyright (c) 1990, 1991, 1993 2.\" The Regents of the University of California. All rights reserved. 3.\" 4.\" This code is derived from software contributed to Berkeley by 5.\" Chris Torek. 6.\" Redistribution and use in source and binary forms, with or without 7.\" modification, are permitted provided that the following conditions 8.\" are met: --- 24 unchanged lines hidden (view full) --- 33.\" 34.\" @(#)string.3 8.2 (Berkeley) 12/11/93 35.\" $FreeBSD$ 36.\" 37.Dd December 11, 1993 38.Dt STRING 3 39.Os 40.Sh NAME |
41.Nm stpcpy , |
|
41.Nm strcat , 42.Nm strncat , 43.Nm strchr , 44.Nm strrchr , 45.Nm strcmp , 46.Nm strncmp , 47.Nm strcasecmp , 48.Nm strncasecmp , --- 10 unchanged lines hidden (view full) --- 59.Nm index , 60.Nm rindex 61.Nd string specific functions 62.Sh LIBRARY 63.Lb libc 64.Sh SYNOPSIS 65.In string.h 66.Ft char * | 42.Nm strcat , 43.Nm strncat , 44.Nm strchr , 45.Nm strrchr , 46.Nm strcmp , 47.Nm strncmp , 48.Nm strcasecmp , 49.Nm strncasecmp , --- 10 unchanged lines hidden (view full) --- 60.Nm index , 61.Nm rindex 62.Nd string specific functions 63.Sh LIBRARY 64.Lb libc 65.Sh SYNOPSIS 66.In string.h 67.Ft char * |
68.Fn stpcpy "char *dst" "const char *src" 69.Ft char * |
|
67.Fn strcat "char *s" "const char * append" 68.Ft char * 69.Fn strncat "char *s" "const char *append" "size_t count" 70.Ft char * 71.Fn strchr "const char *s" "int c" 72.Ft char * 73.Fn strrchr "const char *s" "int c" 74.Ft int --- 40 unchanged lines hidden (view full) --- 115.Pp 116Except as noted in their specific manual pages, 117the string functions do not test the destination 118for size limitations. 119.Sh SEE ALSO 120.Xr bstring 3 , 121.Xr index 3 , 122.Xr rindex 3 , | 70.Fn strcat "char *s" "const char * append" 71.Ft char * 72.Fn strncat "char *s" "const char *append" "size_t count" 73.Ft char * 74.Fn strchr "const char *s" "int c" 75.Ft char * 76.Fn strrchr "const char *s" "int c" 77.Ft int --- 40 unchanged lines hidden (view full) --- 118.Pp 119Except as noted in their specific manual pages, 120the string functions do not test the destination 121for size limitations. 122.Sh SEE ALSO 123.Xr bstring 3 , 124.Xr index 3 , 125.Xr rindex 3 , |
126.Xr stpcpy 3 , |
|
123.Xr strcasecmp 3 , 124.Xr strcat 3 , 125.Xr strchr 3 , 126.Xr strcmp 3 , 127.Xr strcpy 3 , 128.Xr strcspn 3 , 129.Xr strerror 3 , 130.Xr strlen 3 , --- 28 unchanged lines hidden --- | 127.Xr strcasecmp 3 , 128.Xr strcat 3 , 129.Xr strchr 3 , 130.Xr strcmp 3 , 131.Xr strcpy 3 , 132.Xr strcspn 3 , 133.Xr strerror 3 , 134.Xr strlen 3 , --- 28 unchanged lines hidden --- |