1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-12-21 13:38:01 +03:00

Rename c-pp::ARGV to c-pp::argv and remove its use from the license header (where it doesn't get applied).

FossilOrigin-Name: a2e18d299c8fd7360de246fdc3a2f92025bf321e06c5baf6032ba98854733e60
This commit is contained in:
stephan
2025-11-28 02:34:08 +00:00
parent 6fb51919c3
commit f26c99005a
5 changed files with 12 additions and 13 deletions

View File

@@ -2603,7 +2603,7 @@ static int arg_is_flag( char const *zFlag, char const *zArg,
static void define_argv(int argc, char const * const * argv){
sqlite3_str * const s = sqlite3_str_new(g.db);
sqlite3_str_append(s, "c-pp::ARGV=", 11);
sqlite3_str_append(s, "c-pp::argv=", 11);
for( int i = 0; i < argc; ++i ){
if( i ) sqlite3_str_appendchar(s, 1, ' ');
sqlite3_str_appendf(s, "%s", argv[i]);