*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->NetBSD man pages -> fmtcheck (3)              
Title
Content
Arch
Section
 

FMTCHECK(3)

Contents


NAME    [Toc]    [Back]

     fmtcheck - sanitizes user-supplied printf(3)-style format string

LIBRARY    [Toc]    [Back]

     Standard C Library (libc, -lc)

SYNOPSIS    [Toc]    [Back]

     #include <stdio.h>

     const char *
     fmtcheck(const char *fmt_suspect, const char *fmt_default);

DESCRIPTION    [Toc]    [Back]

     The fmtcheck function scans fmt_suspect and fmt_default to determine if
     fmt_suspect will consume the same argument types as fmt_default and to
     ensure that fmt_suspect is a valid format string.

     The printf(3) family of functions can not verify the types of arguments
     that they are passed at run-time.  In some cases, like catgets(3), it is
     useful or necessary to use a user-supplied format string with no guarantee
 that the format string matches the specified parameters.

     The fmtcheck function was designed to be used in these cases, as in:

           printf(fmtcheck(user_format, standard_format), arg1, arg2);

     In the check, field widths, fillers, precisions, etc. are ignored (unless
     the field width or precision is an asterisk `*' instead of a digit
     string).  Also, any text other than the format specifiers is completely
     ignored.

     Note that the formats may be quite different as long as they accept the
     same parameters.  For example, ".Dq %p %o %30s %#llx %-10.*e %n" is compatible
 with "This number %lu %d%% and string %s has %qd numbers and %.*g
     floats (%n)."  However, "%o" is not equivalent to "%lx" because the first
     requires an integer and the second requires a long.

RETURN VALUES    [Toc]    [Back]

     If fmt_suspect is a valid format and consumes the same argument types as
     fmt_default, then the fmtcheck function will return fmt_suspect.  Otherwise,
 it will return fmt_default.

SEE ALSO    [Toc]    [Back]

      
      
     printf(3)

BSD                            October 17, 2000                            BSD
[ Back ]
 Similar pages
Name OS Title
format IRIX Format a string in the style of sprintf
deb-old Linux old style Debian binary package format
DXmCvtCStoFC Tru64 Converts a compound string to a file-compatible format string. Currently uses text format.
scan IRIX Parse string using conversion specifiers in the style of sscanf
scan IRIX Parse string using conversion specifiers in the style of sscanf
DXmCvtCStoOS Tru64 Converts a compound string to an operatingsystem specific format. Currently uses text format.
DXmCvtFCtoCS Tru64 Converts a string in the file-compatible format to a compound string.
DXmCvtOStoCS Tru64 Converts a string in the operating-systemspecific format to a compound string.
XmCvtByteStreamToXmString HP-UX A compound string function that converts from a compound string in Byte Stream format to a compound string
XmCvtXmStringToByteStream HP-UX A compound string function that converts a compound string to a Byte Stream format
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service