You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 satır
190B

  1. #pragma once
  2. extern "C" {
  3. /**
  4. * $$ x*x * (x-1)! $$
  5. *
  6. * @param cnt
  7. */
  8. uint32_t _loop(uint32_t x);
  9. /**
  10. * Computes factorial
  11. *
  12. * @param x
  13. */
  14. uint32_t _tail_recursion(uint32_t x);
  15. }