fopen()-like routine that uses VFS path expansion. Definition at line 459 of file vfs.c. 00460 { 00461 char *fn; 00462 FILE *ret; 00463 00464 fn = vfs_path_concat(NULL, filename, 0); 00465 if (fn == NULL) 00466 return (NULL); 00467 00468 ret = fopen(fn, mode); 00469 g_free(fn); 00470 00471 return (ret); 00472 }
Here is the call graph for this function:
![]()
Here is the caller graph for this function:
![]() |
1.6.3