~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/memset.c

Fixing a few comments and a few tests referring to old BSD functions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
    memset(dst, chr, len)
22
22
    fills the memory area dst[0..len-1] with len bytes all equal to chr.
23
 
    The result is dst.  See also bfill(), which has no return value and
24
 
    puts the last two arguments the other way around.
 
23
    The result is dst.
25
24
 
26
25
    Note: the VAX assembly code version can only handle 0 <= len < 2^16.
27
26
    It is presented for your interest and amusement.