You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
630 B
28 lines
630 B
/* Copyright 2018 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*
|
|
* Helpers for the minijail0 program. Split out for unittesting.
|
|
*/
|
|
|
|
#ifndef MINIJAIL_MINIJAIL0_CLI_H_
|
|
#define MINIJAIL_MINIJAIL0_CLI_H_
|
|
|
|
#include "elfparse.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct minijail;
|
|
|
|
int parse_args(struct minijail *j, int argc, char *const argv[],
|
|
int *exit_immediately, ElfType *elftype,
|
|
const char **preload_path);
|
|
|
|
#ifdef __cplusplus
|
|
}; /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* MINIJAIL_MINIJAIL0_CLI_H_ */
|