Move the declaration of rb_path_check

Although this function is unrelated to hash, it was defined in hash.c
to check PATH environment variable originally.  Then the definition
was moeved to file.c but the declaration was left in the hash.c block.
This commit is contained in:
Nobuyoshi Nakada 2025-01-13 13:05:45 +09:00
parent 384e6945ac
commit f7fd42ce74
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465
Notes: git 2025-01-13 11:27:55 +00:00
2 changed files with 13 additions and 17 deletions

View File

@ -208,6 +208,19 @@ int rb_is_absolute_path(const char *path);
*/
rb_off_t rb_file_size(VALUE file);
/**
* If the PATH_SEPARATOR-separated list of directory names contains the name of
* a world-writable directory, issue a warning for it. This may do nothing on
* some platforms.
*
* @param[in] path A local path.
* @retval 0 The "check" succeeded.
* @retval otherwise The "check" failed.
* @note This feature may be disabled by setting `ENABLE_PATH_CHECK`
* macro to zero at compilation time.
*/
int rb_path_check(const char *path);
RBIMPL_SYMBOL_EXPORT_END()
#endif /* RBIMPL_INTERN_FILE_H */

View File

@ -284,23 +284,6 @@ typedef VALUE rb_hash_update_func(VALUE newkey, VALUE oldkey, VALUE value);
*/
VALUE rb_hash_update_by(VALUE hash1, VALUE hash2, rb_hash_update_func *func);
/* file.c */
/**
* If the PATH_SEPARATOR-separated list of directory names contains the name of
* a world-writable directory, issue a warning for it. This may do nothing on
* some platforms.
*
* @param[in] path A local path.
* @retval 0 The "check" succeeded.
* @retval otherwise The "check" failed.
* @note This feature may be disabled by setting `ENABLE_PATH_CHECK`
* macro to zero at compilation time.
*/
int rb_path_check(const char *path);
/* hash.c */
/**
* Destructively removes every environment variables of the running process.
*