Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

25 wiersze
424 B

  1. #ifndef __utils_run__
  2. #define __utils_run__
  3. void hex_to_base64_test();
  4. void xor_strings_test();
  5. void hamming_test();
  6. void base64_test();
  7. void convert_string_to_hex_test();
  8. void c2b_test();
  9. namespace UTILS {
  10. void run() {
  11. hamming_test();
  12. hex_to_base64_test();
  13. convert_string_to_hex_test();
  14. xor_strings_test();
  15. base64_test();
  16. c2b_test();
  17. }
  18. }
  19. #endif // __utils_run__