mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
Let's not leak details from src/shared and src/libsystemd into src/basic, even though you can't actually do anything useful with just forward declarations from src/shared. The sd-forward.h header is put in src/libsystemd/sd-common as we don't have a directory for shared internal headers for libsystemd yet. Let's also rename forward.h to basic-forward.h to keep things self-explanatory.
27 lines
1.1 KiB
C
27 lines
1.1 KiB
C
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
#pragma once
|
|
|
|
#include "basic-forward.h"
|
|
|
|
int parse_env_filev(FILE *f, const char *fname, va_list ap);
|
|
int parse_env_file_fdv(int fd, const char *fname, va_list ap);
|
|
int parse_env_file_sentinel(FILE *f, const char *fname, ...) _sentinel_;
|
|
#define parse_env_file(f, fname, ...) parse_env_file_sentinel(f, fname, __VA_ARGS__, NULL)
|
|
int parse_env_file_fd_sentinel(int fd, const char *fname, ...) _sentinel_;
|
|
#define parse_env_file_fd(fd, fname, ...) parse_env_file_fd_sentinel(fd, fname, __VA_ARGS__, NULL)
|
|
int load_env_file(FILE *f, const char *fname, char ***ret);
|
|
int load_env_file_pairs(FILE *f, const char *fname, char ***ret);
|
|
int load_env_file_pairs_fd(int fd, const char *fname, char ***ret);
|
|
|
|
int merge_env_file(char ***env, FILE *f, const char *fname);
|
|
|
|
typedef enum WriteEnvFileFlags {
|
|
WRITE_ENV_FILE_LABEL = 1 << 0,
|
|
} WriteEnvFileFlags;
|
|
|
|
int write_env_file(int dir_fd, const char *fname, char **headers, char **l, WriteEnvFileFlags flags);
|
|
|
|
int write_vconsole_conf(int dir_fd, const char *fname, char **l);
|
|
|
|
void env_file_fputs_assignment(FILE *f, const char *k, const char *v);
|