diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-01-15 12:14:05 +0000 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-01-15 12:14:05 +0000 |
commit | 35d488e972a9dd75ce3867c000405f128b79c615 (patch) | |
tree | e3319a23d9aa0d4725f88a99fdd5131488a334a9 /unsorted/uContextParser.cpp | |
parent | 8078e7f897aaae9b492b22475060052d68b9c547 (diff) | |
download | MWCC-35d488e972a9dd75ce3867c000405f128b79c615.tar.gz MWCC-35d488e972a9dd75ce3867c000405f128b79c615.zip |
reorganise things a bit to align further with the actual names/structure
Diffstat (limited to '')
-rw-r--r-- | command_line/PluginLib/Src/Library/CWParserPluginsPrivate.cpp (renamed from unsorted/uContextParser.cpp) | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/unsorted/uContextParser.cpp b/command_line/PluginLib/Src/Library/CWParserPluginsPrivate.cpp index 35d6dfa..6973b4d 100644 --- a/unsorted/uContextParser.cpp +++ b/command_line/PluginLib/Src/Library/CWParserPluginsPrivate.cpp @@ -7,16 +7,16 @@ static CWParserContext *GetContext(CWPluginContext context) { return 0; } -CW_CALLBACK CWParserGetBuildDate(CWPluginContext context, const char **buildDate, const char **buildTime) { +CW_CALLBACK CWParserGetBuildDate(CWPluginContext context, const char **bdate, const char **btime) { CWParserContext *pc; if (!(pc = GetContext(context))) return cwErrInvalidCallback; - if (!buildDate) + if (!bdate) return cwErrInvalidParameter; - if (!buildTime) + if (!btime) return cwErrInvalidParameter; - *buildDate = pc->build_date; - *buildTime = pc->build_time; + *bdate = pc->build_date; + *btime = pc->build_time; return cwNoErr; } |