This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: PATCH: safe string copy and concetation


On Tue, 8 Aug 2000, Kaz Kylheku wrote:

> Certainly, strlcpy is easy:
> 
>     #define strlcpy(a, b, c) sprintf(a, "%.*s", b, (int) ((c)-1))
> 
> Did I get that right? The idea is to copy at most c-1 characters from string a

On second reading, no I didn't! The int parameter must precede the char * one.
Oops! :)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]