Daemon News Ezine BSD News BSD Mall BSD Support Forum BSD Advocacy BSD Updates

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

cvs commit: src/lib/libc/stdio asprintf.c fvwrite.c printf.3 vasprintf.c



peter       1998/07/07 17:44:59 PDT

  Modified files:
    lib/libc/stdio       asprintf.c fvwrite.c printf.3 vasprintf.c 
  Log:
  Replace my original asprintf() and vasprintf() hacks with something
  more cleanly integrated with stdio.  This should be faster and cleaner
  since it doesn't memcpy() the data into a seperate buffer.  This lets
  stdio allocate and manage the buffer and then hand it over to the user.
  
  Obtained from: Todd Miller <Todd.Miller@xxxxxxxxxxxxx> via OpenBSD
  
  Revision  Changes    Path
  1.4       +40 -18    src/lib/libc/stdio/asprintf.c
  1.8       +18 -1     src/lib/libc/stdio/fvwrite.c
  1.10      +6 -10     src/lib/libc/stdio/printf.3
  1.9       +35 -113   src/lib/libc/stdio/vasprintf.c