AVR Libc Home Page AVRs AVR Libc Development Pages
Main Page User Manual Reference FAQ Example Projects

stdio_private.h

01	1 Copyright (c) 2002,2005, Joerg Wunsch
022All rights reserved. 033
044Redistribution and use in source and binary forms, with or without 055modification, are permitted provided that the following conditions are met: 066 077* Redistributions of source code must retain the above copyright 088notice, this list of conditions and the following disclaimer. 099* Redistributions in binary form must reproduce the above copyright 1010notice, this list of conditions and the following disclaimer in 1111the documentation and/or other materials provided with the 1212distribution. 1313* Neither the name of the copyright holders nor the names of 1414contributors may be used to endorse or promote products derived 1515from this software without specific prior written permission. 1616 1717THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 1818AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1919IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2020ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 2121LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 2222CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 2323SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 2424INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 2525CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 2626ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 2727POSSIBILITY OF SUCH DAMAGE. 2828*/ 2929 3030/* $Id: stdio_private.h 847 2005-09-06 18:49:15Z joerg_wunsch $ */ 3131 3232#include <stdint.h> 3333#include <stdio.h> 3434 3535/* values for PRINTF_LEVEL */ 3636#define PRINTF_MIN 1 3737#define PRINTF_STD 2 3838#define PRINTF_FLT 3 3939 4040/* values for SCANF_LEVEL */ 4141#define SCANF_MIN 1 4242#define SCANF_STD 2 4343#define SCANF_FLT 3

stdint.h

stdio.h