Home | History | Annotate | Download | only in minijail
      1 /* Copyright 2018 The Chromium OS Authors. All rights reserved.
      2  * Use of this source code is governed by a BSD-style license that can be
      3  * found in the LICENSE file.
      4  *
      5  * Helpers for the minijail0 program.  Split out for unittesting.
      6  */
      7 
      8 #ifndef MINIJAIL_MINIJAIL0_CLI_H_
      9 #define MINIJAIL_MINIJAIL0_CLI_H_
     10 
     11 #include "elfparse.h"
     12 
     13 #ifdef __cplusplus
     14 extern "C" {
     15 #endif
     16 
     17 struct minijail;
     18 
     19 int parse_args(struct minijail *j, int argc, char * const argv[],
     20 	       int *exit_immediately, ElfType *elftype);
     21 
     22 #ifdef __cplusplus
     23 }; /* extern "C" */
     24 #endif
     25 
     26 #endif  /* MINIJAIL_MINIJAIL0_CLI_H_ */
     27