exLibC.cpp 175 B

12345678910111213
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <pkg1/exLibC/exLibC.hpp>
  4. int check_smaller(int value) {
  5. if (value < HELLO_LIMIT) {
  6. return 0;
  7. } else {
  8. return -1;
  9. }
  10. }