Fix comment

This commit is contained in:
Alex Kotov 2022-01-20 03:38:17 +05:00
parent 74666d9f5a
commit e6f707b9e0
1 changed files with 9 additions and 11 deletions

View File

@ -1,14 +1,12 @@
///////////////////////////////////////////////////////////////////////////////
// \author (c) Marco Paland (info@paland.com)
// 2014-2019, PALANDesign Hannover, Germany
//
// \brief Tiny printf, sprintf and (v)snprintf implementation, optimized for speed on
// embedded systems with a very limited resources. These routines are thread
// safe and reentrant!
// Use this instead of the bloated standard/newlib printf cause these use
// malloc for printf (and may not be thread safe).
//
///////////////////////////////////////////////////////////////////////////////
/**
* Copyright (c) 2014-2019 Marco Paland <info@paland.com>
*
* Tiny printf, sprintf and (v)snprintf implementation, optimized for speed on
* embedded systems with a very limited resources. These routines are thread
* safe and reentrant!
*
* Author: Marco Paland (info@paland.com) PALANDesign Hannover, Germany
*/
#include <kernaux/libc.h>
#include <kernaux/printf.h>