Compare commits
	
		
			3 Commits
		
	
	
		
			b4663a01e8
			...
			v0.3.1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| ad655041dd | |||
| e9dd39f53b | |||
| cffe8bfe4a | 
| @@ -34,7 +34,7 @@ conan create . | |||||||
|  |  | ||||||
|  |  | ||||||
| ## 示例程序 | ## 示例程序 | ||||||
| 构建简单的命令行程序 | 构建简单的命令行程序,更多示例请参考`example`目录 | ||||||
| ```c | ```c | ||||||
| #include "ArgParse.h" | #include "ArgParse.h" | ||||||
| #include <stdbool.h> | #include <stdbool.h> | ||||||
| @@ -42,7 +42,7 @@ conan create . | |||||||
| #include <string.h> | #include <string.h> | ||||||
|  |  | ||||||
| ArgParse *Init() { | ArgParse *Init() { | ||||||
|     ArgParse *ap = argParseInit("简单的命令行工具示例"); |     ArgParse *ap = argParseInit("简单的命令行工具示例",NOVALUE); | ||||||
|  |  | ||||||
|     // 添加第一个命令 |     // 添加第一个命令 | ||||||
|     Command *cmd = argParseAddCommand( |     Command *cmd = argParseAddCommand( | ||||||
|   | |||||||
| @@ -6,7 +6,7 @@ import os | |||||||
|  |  | ||||||
| class loggingRecipe(ConanFile): | class loggingRecipe(ConanFile): | ||||||
|     name = "cargparse" |     name = "cargparse" | ||||||
|     version = "0.3.0" |     version = "0.3.1" | ||||||
|     license = "MIT" |     license = "MIT" | ||||||
|     author = "321640253@qq.com" |     author = "321640253@qq.com" | ||||||
|     url = "https://gitea.youmetme.wang/youmetme/logging" |     url = "https://gitea.youmetme.wang/youmetme/logging" | ||||||
|   | |||||||
| @@ -7,6 +7,14 @@ | |||||||
| extern "C" { | extern "C" { | ||||||
| #endif | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
|  | #ifdef _MSC_VER | ||||||
|  |     #define NORETURN __declspec(noreturn) | ||||||
|  | #else | ||||||
|  |     #define NORETURN _Noreturn | ||||||
|  | #endif | ||||||
|  |  | ||||||
|  |  | ||||||
| #define ARG_DEFAULT_HELP_FLAG "--help" | #define ARG_DEFAULT_HELP_FLAG "--help" | ||||||
|  |  | ||||||
| typedef struct ArgParse ArgParse; // 解析器 | typedef struct ArgParse ArgParse; // 解析器 | ||||||
| @@ -303,7 +311,7 @@ char *argParseGenerateHelp(ArgParse *argParse); | |||||||
| char * | char * | ||||||
| argParseGenerateArgErrorMsg(ArgParse *argParse, char *name, bool short_flag); | argParseGenerateArgErrorMsg(ArgParse *argParse, char *name, bool short_flag); | ||||||
|  |  | ||||||
| _Noreturn void argParseError(ArgParse   *argParse, | NORETURN void argParseError(ArgParse   *argParse, | ||||||
|                              Command    *lastCommand, |                              Command    *lastCommand, | ||||||
|                              const char *prefix, |                              const char *prefix, | ||||||
|                              const char *suffix); |                              const char *suffix); | ||||||
|   | |||||||
| @@ -818,7 +818,7 @@ bool argParseCheckCommandTriggered(ArgParse *argParse, char *command_name) { | |||||||
|     return command->is_trigged; |     return command->is_trigged; | ||||||
| } | } | ||||||
|  |  | ||||||
| _Noreturn void argParseError(ArgParse   *argParse, | NORETURN void argParseError(ArgParse   *argParse, | ||||||
|                              Command    *lastCommand, |                              Command    *lastCommand, | ||||||
|                              const char *prefix, |                              const char *prefix, | ||||||
|                              const char *suffix) { |                              const char *suffix) { | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user