mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
The identifier 'stdin' is reserved in C. It can be #defined to any statement that evaluates to a FILE*. We do not want that for our field, so change to a more descriptive name.
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#define DROPIN_MARKER_START "### Anything between here and the comment below will become the contents of the drop-in file"
|
|
#define DROPIN_MARKER_END "### Edits below this comment will be discarded"
|
|
|
|
typedef struct EditFile EditFile;
|
|
|
|
typedef struct EditFileContext {
|
|
EditFile *files;
|
|
size_t n_files;
|
|
const char *marker_start;
|
|
const char *marker_end;
|
|
bool remove_parent;
|
|
bool overwrite_with_origin; /* Always overwrite target with original file. */
|
|
bool read_from_stdin; /* Read contents from stdin instead of launching an editor. */
|
|
} EditFileContext;
|
|
|
|
void edit_file_context_done(EditFileContext *context);
|
|
|
|
bool edit_files_contains(const EditFileContext *context, const char *path);
|
|
|
|
int edit_files_add(
|
|
EditFileContext *context,
|
|
const char *path,
|
|
const char *original_path,
|
|
char * const *comment_paths);
|
|
|
|
int do_edit_files_and_install(EditFileContext *context);
|