32   if (code_path != 
NULL) {
 
   33     const char* last_slash = strrchr(code_path, 
'/');
 
   34     if (last_slash != 
NULL && last_slash + 1 - code_path > trunc_index)
 
   35       trunc_index = last_slash + 1 - code_path;
 
   36     last_slash = strrchr(code_path, 
'\\');
 
   37     if (last_slash != 
NULL && last_slash + 1 - code_path > trunc_index)
 
   38       trunc_index = last_slash + 1 - code_path;
 
   40   *trunc_path = code_path;
 
void truncate_at(inT32 index)
TESS_API void truncate_path(const char *code_path, STRING *trunc_path)