fork download
  1. #include <stdio.h>
  2. #include <stdbool.h>
  3. typedef enum
  4. {
  5. TEST_FLAG = -1,
  6. AZIMUTH_SPEED_MONITOR_FLAG,
  7. POWER_SUPPLY_MONITOR_FLAG,
  8. LASER_ALIVE_MONITOR_FLAG,
  9. ENABLE_REQUESTED_FLAG,
  10. LASER_SAFETY_FLAG_COUNT
  11. } LaserPumpFlag;
  12.  
  13. bool sys_laser_pump_enable_get_flag(LaserPumpFlag flag)
  14. {
  15. bool result = false;
  16.  
  17. if (flag < LASER_SAFETY_FLAG_COUNT)
  18. {
  19. printf("flag was accepted (%d)\n", flag);
  20. result = flag;
  21. }
  22. else
  23. {
  24. printf("flag was not accepted (%d)\n", flag);
  25. }
  26.  
  27. return result;
  28. }
  29.  
  30. int main(void) {
  31. // your code goes here
  32. sys_laser_pump_enable_get_flag(-1);
  33. return 0;
  34. }
  35.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
flag was accepted (-1)