9 lines
174 B
C
9 lines
174 B
C
|
#ifndef _BOOTSTRAP_PATH_H
|
||
|
#define _BOOTSTRAP_PATH_H
|
||
|
|
||
|
#include <stdlib.h>
|
||
|
|
||
|
char *join_path_segments(size_t n, const char *segments[static n]);
|
||
|
|
||
|
#endif /* _BOOTSTRAP_PATH_H */
|