Open waldnercharles opened 2 months ago
Passing C:/Users/waldnercharles to cf_path_top_directory appears to return C:/Use. I believe this is because we should be calling char* s = sdup(path + at); instead of char* s = sdup(path);, but haven't had time to look at the unit tests.
C:/Users/waldnercharles
cf_path_top_directory
C:/Use
char* s = sdup(path + at);
char* s = sdup(path);
Passing
C:/Users/waldnercharles
tocf_path_top_directory
appears to returnC:/Use
. I believe this is because we should be callingchar* s = sdup(path + at);
instead ofchar* s = sdup(path);
, but haven't had time to look at the unit tests.