Subversion Repositories freemyipod

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
71 theseven 1
/***************************************************************************
2
 *             __________               __   ___.
3
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
4
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
5
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
6
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
7
 *                     \/            \/     \/    \/            \/
8
 * $Id$
9
 *
10
 * Copyright (C) 2002 by Gary Czvitkovicz
11
 *
12
 * This program is free software; you can redistribute it and/or
13
 * modify it under the terms of the GNU General Public License
14
 * as published by the Free Software Foundation; either version 2
15
 * of the License, or (at your option) any later version.
16
 *
17
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18
 * KIND, either express or implied.
19
 *
20
 ****************************************************************************/
21
 
22
/*
23
 * Minimal printf and snprintf formatting functions
24
 *
25
 * These support %c %s %d and %x
26
 * Field width and zero-padding flag only
27
 */
28
 
29
#include "global.h"
30
#include <stdio.h>
31
#include <stdarg.h>
32
#include <stdbool.h>
33
#include <limits.h>
34
#include "format.h"
35
 
36
/* ALSA library requires a more advanced snprintf, so let's not
37
   override it in simulator for Linux.  Note that Cygwin requires
38
   our snprintf or it produces garbled output after a while. */
39
 
40
struct for_snprintf {
41
    unsigned char *ptr; /* where to store it */
42
    size_t bytes; /* amount already stored */
43
    size_t max;   /* max amount to store */
44
};
45
 
46
static int sprfunc(void *ptr, unsigned char letter)
47
{
48
    struct for_snprintf *pr = (struct for_snprintf *)ptr;
49
    if(pr->bytes < pr->max) {
50
        *pr->ptr = letter;
51
        pr->ptr++;
52
        pr->bytes++;
53
        return true;
54
    }
55
    return false; /* filled buffer */
56
}
57
 
58
 
59
int snprintf(char *buf, size_t size, const char *fmt, ...)
60
{
61
    bool ok;
62
    va_list ap;
63
    struct for_snprintf pr;
64
 
65
    pr.ptr = (unsigned char *)buf;
66
    pr.bytes = 0;
67
    pr.max = size;
68
 
69
    va_start(ap, fmt);
70
    ok = format(sprfunc, &pr, fmt, ap);
71
    va_end(ap);
72
 
73
    /* make sure it ends with a trailing zero */
74
    pr.ptr[(pr.bytes < pr.max) ? 0 : -1] = '\0';
75
 
76
    return pr.bytes;
77
}
78
 
79
int vsnprintf(char *buf, size_t size, const char *fmt, va_list ap)
80
{
81
    bool ok;
82
    struct for_snprintf pr;
83
 
84
    pr.ptr = (unsigned char *)buf;
85
    pr.bytes = 0;
86
    pr.max = size;
87
 
88
    ok = format(sprfunc, &pr, fmt, ap);
89
 
90
    /* make sure it ends with a trailing zero */
91
    pr.ptr[(pr.bytes < pr.max) ? 0 : -1] = '\0';
92
 
93
    return pr.bytes;
94
}