aboutsummaryrefslogtreecommitdiffstats
path: root/test/ccured_olden/mst/args.c
blob: 169d87ab34f82769f20cf0de2a562b12a956f4a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* For copyright information, see olden_v1.0/COPYRIGHT */

#ifdef SS_PLAIN
#include "ssplain.h"
#include "mst.h"
#endif SS_PLAIN


int dealwithargs(int argc, char *argv[])
{
  int level;

  if (argc > 1)
    level = atoi(argv[1]);
  else
    level = 1024;

  return level;
}