This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | import sys | |
| import csv | |
| if len(sys.argv) >= 4: | |
| try: | |
| file1 = open(sys.argv[1], "r") | |
| keyw = sys.argv[2] | |
| file2 = open(sys.argv[3], "w") | |
| datat = csv.DictReader(file1) | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #include <assert.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #include "awesome-hash.h" | |
| uint64_t hashGenerate(const char* input, size_t length) { | |
| assert(input); | |
| uint64_t FNV_Offset_Basis = 14695981039346656037; | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #ifndef KAUPPIM_AWESOME-HASH_H | |
| #define KAUPPIM_AWESOME-HASH_H | |
| #include <string.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| uint64_t hashGenerate(const char* input, size_t length); | |
| #endif |