Chameleon

Chameleon Svn Source Tree

Root/branches/cparm/i386/modules/include/printflocal.h

1/*-
2 * Copyright (c) 1990, 1993
3 *The Regents of the University of California. All rights reserved.
4 *
5 * This code is derived from software contributed to Berkeley by
6 * Chris Torek.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 4. Neither the name of the University nor the names of its contributors
17 * may be used to endorse or promote products derived from this software
18 * without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 *
32 * $FreeBSD: src/lib/libc/stdio/printflocal.h,v 1.3.2.2 2012/11/17 10:36:05 svnexp Exp $
33 */
34#ifndef_BSD_WINT_T_DEFINED_
35#define _BSD_WINT_T_DEFINED_
36typedefintwint_t;
37#endif
38/*
39 * Flags used during conversion.
40 */
41#defineALT0x001/* alternate form */
42#defineLADJUST0x004/* left adjustment */
43#defineLONGDBL0x008/* long double */
44#defineLONGINT0x010/* long integer */
45#defineLLONGINT0x020/* long long integer */
46#defineSHORTINT0x040/* short integer */
47#defineZEROPAD0x080/* zero (as opposed to blank) pad */
48#defineFPT0x100/* Floating point number */
49#defineGROUPING0x200/* use grouping ("'" flag) */
50/* C99 additional size modifiers: */
51#defineSIZET0x400/* size_t */
52#definePTRDIFFT0x800/* ptrdiff_t */
53#defineINTMAXT0x1000/* intmax_t */
54#defineCHARINT0x2000/* print char using int format */
55
56/*
57 * Macros for converting digits to letters and vice versa
58 */
59#defineto_digit(c)((c) - '0')
60#define is_digit(c)((unsigned)to_digit(c) <= 9)
61#defineto_char(n)((n) + '0')
62
63/* Size of the static argument table. */
64#define STATIC_ARG_TBL_SIZE 8
65
66union arg {
67intintarg;
68u_intuintarg;
69longlongarg;
70u_longulongarg;
71long long longlongarg;
72unsigned long long ulonglongarg;
73ptrdiff_t ptrdiffarg;
74size_tsizearg;
75intmax_t intmaxarg;
76uintmax_t uintmaxarg;
77void*pvoidarg;
78char*pchararg;
79signed char *pschararg;
80short*pshortarg;
81int*pintarg;
82long*plongarg;
83long long *plonglongarg;
84ptrdiff_t *pptrdiffarg;
85ssize_t*pssizearg;
86intmax_t *pintmaxarg;
87#ifndef NO_FLOATING_POINT
88doubledoublearg;
89long double longdoublearg;
90#endif
91wint_twintarg;
92wchar_t*pwchararg;
93};
94
95/* Handle positional parameters. */
96int__find_arguments(const char *, va_list, union arg **);
97int__find_warguments(const wchar_t *, va_list, union arg **);
98

Archive Download this file

Revision: 2154