pub unsafe extern "C" fn PHYSFS_init(argv0: *const c_char) -> c_intExpand description
\fn int PHYSFS_init(const char *argv0) \brief Initialize the PhysicsFS library.
This must be called before any other PhysicsFS function.
This should be called prior to any attempts to change your process’s current working directory.
\param argv0 the argv[0] string passed to your program’s mainline. This may be NULL on most platforms (such as ones without a standard main() function), but you should always try to pass something in here. Unix-like systems such as Linux need to pass argv[0] from main() in here. \return nonzero on success, zero on error. Specifics of the error can be gleaned from PHYSFS_getLastError().
\sa PHYSFS_deinit \sa PHYSFS_isInit