refactor: rename files

This commit is contained in:
Shengliang Guan 2022-04-20 19:46:55 +08:00
parent 9e287ce29f
commit 2d94f8a875
5 changed files with 4 additions and 4 deletions

View File

@ -51,4 +51,4 @@ void clearScreen(int ecmd_pos, int cursor_pos);
void printChar(char c, int times); void printChar(char c, int times);
void positionCursor(int step, int direction); void positionCursor(int step, int direction);
#endif #endif /*_TD_SHELL_COMMAND_H_*/

View File

@ -20,6 +20,9 @@
#include "taos.h" #include "taos.h"
#include "taosdef.h" #include "taosdef.h"
#include <regex.h>
#include <wordexp.h>
#define MAX_HISTORY_SIZE 1000 #define MAX_HISTORY_SIZE 1000
#define MAX_COMMAND_SIZE 1048586 #define MAX_COMMAND_SIZE 1048586
#define HISTORY_FILE ".taos_history" #define HISTORY_FILE ".taos_history"

View File

@ -19,7 +19,6 @@
#include "os.h" #include "os.h"
#include "shellInt.h" #include "shellInt.h"
#include <regex.h>
typedef struct { typedef struct {
char widthInString; char widthInString;

View File

@ -28,8 +28,6 @@
#include "ttypes.h" #include "ttypes.h"
#include "tutil.h" #include "tutil.h"
#include <regex.h>
#include <wordexp.h>
/**************** Global variables ****************/ /**************** Global variables ****************/
#ifdef _TD_POWER_ #ifdef _TD_POWER_