# create_file **Repository Path**: sp2k/create_file ## Basic Information - **Project Name**: create_file - **Description**: 仿source insight 新建.h和.c文件 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-08-06 - **Last Updated**: 2022-03-12 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 使用命令行新建.c和.h文件 ### 命令行输入:create_file a.h ```c /*************************************************************************** ** @file: a.h ** @brief: ** @author: ** @date: 2019-08-06 ** @version: ***************************************************************************/ #ifndef __A__ #define __A__ #endif /* __A__ */ ``` ### 命令行输入:create_file a.c ```c /*************************************************************************** ** @file: a.c ** @brief: ** @author: ** @date: 2019-08-06 ** @version: ***************************************************************************/ #include "a.h" /*****************end of file a.c***********/ ```