Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-02 08:21:06

0001 
0002 
0003 #include <stdlib.h>
0004 
0005 
0006 int get_value(const char *arg, int *status)
0007 {
0008 
0009   int value;
0010   value = strtol(arg, 0,0);
0011 
0012   return value;
0013 }
0014 
0015 unsigned int get_uvalue(const char *arg, int *status)
0016 {
0017 
0018   unsigned int value;
0019   value = strtoul(arg, 0,0);
0020 
0021   return value;
0022 }
0023