forked from github/server
230a2d8fba
this somehow eliminates bogus cppcheck warnings
10 lines
231 B
C
10 lines
231 B
C
#pragma once
|
|
|
|
#include <stddef.h>
|
|
|
|
#ifndef PATH_MAX
|
|
/* @see https://insanecoding.blogspot.no/2007/11/pathmax-simply-isnt.html */
|
|
#define PATH_MAX 260
|
|
#endif
|
|
|
|
char * path_join(const char *p1, const char *p2, char *dst, size_t len);
|