| 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"
|
| 113 |
theseven |
30 |
#include "include/stdio.h"
|
| 71 |
theseven |
31 |
#include <limits.h>
|
|
|
32 |
#include "format.h"
|
|
|
33 |
|
|
|
34 |
/* ALSA library requires a more advanced snprintf, so let's not
|
|
|
35 |
override it in simulator for Linux. Note that Cygwin requires
|
|
|
36 |
our snprintf or it produces garbled output after a while. */
|
|
|
37 |
|
|
|
38 |
struct for_snprintf {
|
|
|
39 |
unsigned char *ptr; /* where to store it */
|
|
|
40 |
size_t bytes; /* amount already stored */
|
|
|
41 |
size_t max; /* max amount to store */
|
|
|
42 |
};
|
|
|
43 |
|
|
|
44 |
static int sprfunc(void *ptr, unsigned char letter)
|
|
|
45 |
{
|
|
|
46 |
struct for_snprintf *pr = (struct for_snprintf *)ptr;
|
|
|
47 |
if(pr->bytes < pr->max) {
|
|
|
48 |
*pr->ptr = letter;
|
|
|
49 |
pr->ptr++;
|
|
|
50 |
pr->bytes++;
|
|
|
51 |
return true;
|
|
|
52 |
}
|
|
|
53 |
return false; /* filled buffer */
|
|
|
54 |
}
|
|
|
55 |
|
|
|
56 |
|
|
|
57 |
int snprintf(char *buf, size_t size, const char *fmt, ...)
|
|
|
58 |
{
|
|
|
59 |
bool ok;
|
|
|
60 |
va_list ap;
|
|
|
61 |
struct for_snprintf pr;
|
|
|
62 |
|
|
|
63 |
pr.ptr = (unsigned char *)buf;
|
|
|
64 |
pr.bytes = 0;
|
|
|
65 |
pr.max = size;
|
|
|
66 |
|
|
|
67 |
va_start(ap, fmt);
|
|
|
68 |
ok = format(sprfunc, &pr, fmt, ap);
|
|
|
69 |
va_end(ap);
|
|
|
70 |
|
|
|
71 |
/* make sure it ends with a trailing zero */
|
|
|
72 |
pr.ptr[(pr.bytes < pr.max) ? 0 : -1] = '\0';
|
|
|
73 |
|
|
|
74 |
return pr.bytes;
|
|
|
75 |
}
|
|
|
76 |
|
|
|
77 |
int vsnprintf(char *buf, size_t size, const char *fmt, va_list ap)
|
|
|
78 |
{
|
|
|
79 |
bool ok;
|
|
|
80 |
struct for_snprintf pr;
|
|
|
81 |
|
|
|
82 |
pr.ptr = (unsigned char *)buf;
|
|
|
83 |
pr.bytes = 0;
|
|
|
84 |
pr.max = size;
|
|
|
85 |
|
|
|
86 |
ok = format(sprfunc, &pr, fmt, ap);
|
|
|
87 |
|
|
|
88 |
/* make sure it ends with a trailing zero */
|
|
|
89 |
pr.ptr[(pr.bytes < pr.max) ? 0 : -1] = '\0';
|
|
|
90 |
|
|
|
91 |
return pr.bytes;
|
|
|
92 |
}
|