Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix copyright years and other psychotic cleanups
[simgrid.git] / src / include / simgrid / sg_config.h
1 /* Copyright (c) 2012-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_CONFIG_H
7 #define SIMGRID_CONFIG_H
8
9 #include "xbt/config.h"
10
11 /** Config Globals */
12 SG_BEGIN_DECL()
13
14 XBT_PUBLIC_DATA(xbt_cfg_t) simgrid_config;
15 XBT_PUBLIC_DATA(int) _sg_cfg_init_status;
16 XBT_PUBLIC_DATA(int) _sg_cfg_exit_asap;
17
18 XBT_PUBLIC(void) sg_config_init(int *argc, char **argv);
19 XBT_PUBLIC(void) sg_config_finalize();
20
21 SG_END_DECL()
22
23 #endif