mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-18 03:42:06 +00:00
7 lines
125 B
C
7 lines
125 B
C
![]() |
#include "utils.h"
|
||
|
|
||
|
void mkdirp(char *path){
|
||
|
char buffer[255]="mkdir -p ";
|
||
|
strcat(buffer,path);
|
||
|
system(buffer);
|
||
|
}
|