Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
29cad1bf0fecae8d25416c8839b209ab2e9ea0d6
[simgrid.git] / include / xbt / module.h
1 /* module - modularize the code                                             */
2
3 /* Copyright (c) 2004-2007, 2009-2010, 2012. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef _XBT_MODULE_H
10 #define _XBT_MODULE_H
11
12 #include <xbt/misc.h>           /* XBT_PUBLIC */
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 XBT_PUBLIC(void) xbt_init(int *argc, char **argv);
18 XBT_PUBLIC(void) xbt_exit(void);
19 #ifdef __cplusplus
20 }
21 #endif
22
23 #endif                          /* _XBT_MODULE_H */