You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
452 B

/**
* @file compat.h
* prototypes for compat_xxx.cpp
*
* @author Ben Gardner
* @license GPL v2+
*/
#ifndef COMPAT_H_INCLUDED
#define COMPAT_H_INCLUDED
#include "uncrustify_types.h"
bool unc_getenv(const char *name, std::string &str);
bool unc_homedir(std::string &home);
/*
* even if we prefer the format %zu, we have to change to %lu
* to be runable under Windows
*/
void convert_log_zu2lu(char *buf);
#endif /* COMPAT_H_INCLUDED */