Design Pattern Examples
Overview of object-oriented design patterns
Bridge_LogHelper.h
Go to the documentation of this file.
1
5
6#pragma once
7#ifndef __BRIDGE_LOGHELPER_H__
8#define __BRIDGE_LOGHELPER_H__
9
10#include <stdbool.h>
11#include <stdlib.h>
12
22bool LogHelper_FormatLogLine(const char* loglevel, const char* message, char* output, size_t maxOutputSize);
23
24#endif // __BRIDGE_LOGHELPER_H__
bool LogHelper_FormatLogLine(const char *loglevel, const char *message, char *output, size_t maxOutputSize)
Format a line for logging, including time stamp.