mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-22 15:37:59 +00:00
8 lines
278 B
C
8 lines
278 B
C
#ifndef MLRESCAPE_H
|
|
#define MLRESCAPE_H
|
|
|
|
// Avoids shell-injection cases by replacing single-quote with backslash single-quote,
|
|
// then wrapping the entire result in initial and final single-quote.
|
|
char* alloc_file_name_escaped_for_popen(char* filename);
|
|
|
|
#endif // MLRESCAPE_H
|