mirror of
https://github.com/QIDITECH/QIDI_Q1_Pro.git
synced 2026-01-30 15:38:43 +03:00
12 lines
182 B
C
12 lines
182 B
C
#ifndef MAKERBASE_SHELL_H
|
|
#define MAKERBASE_SHELL_H
|
|
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
#define MAX_FILE_LEN 1024*4
|
|
|
|
void execute_cmd(const char *cmd, char *result);
|
|
|
|
#endif
|