Rev 1605 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1605 | Rev 1702 | ||
---|---|---|---|
Line 24... | Line 24... | ||
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | */ |
27 | */ |
28 | 28 | ||
- | 29 | /** @addtogroup generic |
|
- | 30 | * @{ |
|
- | 31 | */ |
|
- | 32 | /** @file |
|
- | 33 | */ |
|
- | 34 | ||
29 | #include <print.h> |
35 | #include <print.h> |
30 | #include <printf/printf_core.h> |
36 | #include <printf/printf_core.h> |
31 | #include <memstr.h> |
37 | #include <memstr.h> |
32 | 38 | ||
33 | struct vsnprintf_data { |
39 | struct vsnprintf_data { |
Line 91... | Line 97... | ||
91 | str[0] = 0; |
97 | str[0] = 0; |
92 | 98 | ||
93 | /* vsnprintf_write ensures that str will be terminated by zero. */ |
99 | /* vsnprintf_write ensures that str will be terminated by zero. */ |
94 | return printf_core(fmt, &ps, ap); |
100 | return printf_core(fmt, &ps, ap); |
95 | } |
101 | } |
- | 102 | ||
- | 103 | /** @} |
|
- | 104 | */ |
|
- | 105 |