335
336
337
338
339
340
341
|
azNewArgv[4] = 0;
g.localOpen = 0; /* Prevent tags like "current" and "prev" */
fuse_main(4, azNewArgv, &fusefs_methods, NULL);
fusefs_reset();
fusefs_clear_path();
}
#endif /* FOSSIL_HAVE_FUSEFS */
|
>
>
>
>
>
>
>
>
>
>
>
>
>
|
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
|
azNewArgv[4] = 0;
g.localOpen = 0; /* Prevent tags like "current" and "prev" */
fuse_main(4, azNewArgv, &fusefs_methods, NULL);
fusefs_reset();
fusefs_clear_path();
}
#endif /* FOSSIL_HAVE_FUSEFS */
/*
** Return the version number of the fuse library.
*/
const char *fusefs_lib_version(void){
#ifdef FOSSIL_HAVE_FUSEFS
# define STRINGIFY_(X) #X
# define STRINGIFY(X) STRINGIFY_(X)
return STRINGIFY(FUSE_MAJOR_VERSION) "." STRINGIFY(FUSE_MINOR_VERSION);
#else
return 0;
#endif
}
|