1 Star 4 Fork 0

ischen.x/FH_cmdline

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cmdline.h 605 Bytes
一键复制 编辑 原始数据 按行查看 历史
ischen.x 提交于 2024-07-25 17:08 . add example.c
/*
* @Author: ischen.x ischen.x@foxmail.com
* @Date: 2024-07-11 13:29:34
* @LastEditors: ischen.x ischen.x@foxmail.com
* @LastEditTime: 2024-07-25 17:06:32
*
* Copyright (c) 2024 by ischen.x, All Rights Reserved.
*/
#ifndef __CMDLINE_H
#define __CMDLINE_H
#include "linenoise.h"
#define CMD_ARG_COUNT_MAX 10
typedef int (*cmdline_cb)(int argc, char **argv);
typedef struct _cmd{
char *cmd;
cmdline_cb cb;
struct _cmd *next;
}Cmd;
int cmdine_start(const char *username);
int cmdline_new(const char *cmd, cmdline_cb cb);
int cmdline_del(const char *cmd);
#endif /* __CMDLINE_H */
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/ischen-x/fh_cmdline.git
git@gitee.com:ischen-x/fh_cmdline.git
ischen-x
fh_cmdline
FH_cmdline
master

搜索帮助