Skip to content
Snippets Groups Projects
Select Git revision
  • 1ed18eb70e596ce5a1396749ab8a8fe9d8da6031
  • master default protected
  • cmp_tool-improvement
  • v0.15
  • v0.14
  • v0.13
  • v0.12
  • v0.11
  • v0.09
  • v0.08
  • v0.07
  • v0.06
  • v0.05
13 results

vsnprintf.h

Blame
  • vsnprintf.h 794 B
    /**
     * @file   vsnprintf.h
     * @author Dominik Loidolt (dominik.loidolt@univie.ac.at)
     * @date   2024
     *
     * @copyright GPLv2
     * This program is free software; you can redistribute it and/or modify it
     * under the terms and conditions of the GNU General Public License,
     * version 2, as published by the Free Software Foundation.
     *
     * This program is distributed in the hope it will be useful, but WITHOUT
     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
     * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
     * more details.
     *
     * @brief Tiny vsnprintf implementation
     */
    
    
    #ifndef VSNPRINTF_H
    #define VSNPRINTF_H
    
    #if (DEBUGLEVEL > 0)
    int my_vsnprintf(char* buffer, size_t count, const char* format, va_list va);
    #endif
    
    #endif /* VSNPRINTF_H */