mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
Instead of referencing the un-tokenized “raw” command string, strdup() each argv. This way, the input string can be ‘const’.
5 lines
94 B
C
5 lines
94 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
bool tokenize_cmdline(const char *cmdline, char ***argv);
|