Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

25 righe
396 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_to_hex_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_to_hex_test();
  16. c2b_test();
  17. }
  18. }
  19. #endif // __utils_run__