blob: 4da81ad1226f89e54774e02d3cb933b3e061b6cd [file] [log] [blame]
/*
* Copyright 2022 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Stub out the LOG implmentations with fprintf
#ifndef SPRINGBOK_H
#define SPRINGBOK_H
#include <stdio.h>
#define LOG_NOISY(msg, args...) fprintf(stdout, "[NOISY] " msg "\n", ##args)
#define LOG_DEBUG(msg, args...) fprintf(stdout, "[DEBUG] " msg "\n", ##args)
#define LOG_INFO(msg, args...) fprintf(stdout, "[INFO] " msg "\n", ##args)
#define LOG_WARN(msg, args...) fprintf(stdout, "[WARN] " msg "\n", ##args)
#define LOG_ERROR(msg, args...) fprintf(stderr, "[ERROR] " msg "\n", ##args)
#ifdef __cplusplus
extern "C" {
#endif
int float_to_str(const int len, char *buffer, const float value);
#ifdef __cplusplus
}
#endif
#endif // SPRINGBOK_H