Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove deprecated features for next release (3.35).
[simgrid.git] / teshsuite / xbt / cmdline / cmdline.c
1 /* Copyright (c) 2018-2023. 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 #include "simgrid/engine.h"
7 #include <xbt.h>
8
9 XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Logging specific to this test");
10
11 int main(int argc, char** argv)
12 {
13   simgrid_init(&argc, argv);
14
15   for (int i = 1; i < argc; i++)
16     XBT_INFO("argv[%d]=%s", i, argv[i]);
17
18   return 0;
19 }