Skip to content
Snippets Groups Projects
Select Git revision
  • e5850dfbfeca361cb6b19d10f36db81b349477b8
  • master default protected
  • dev-lkugler
  • teaching-2024
  • old_config_2023-05 protected
  • v2025.2
  • v2024.6
  • v2024.2.20
8 results

prepare_namelist.py

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 */