mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
69619aeeb1
Note that this bit flags are not compatible with the native flags defined in `#include <fcntl.h>`.
14 lines
187 B
Ruby
14 lines
187 B
Ruby
class File
|
|
module Constants
|
|
FNM_SYSCASE = 0
|
|
FNM_NOESCAPE = 1
|
|
FNM_PATHNAME = 2
|
|
FNM_DOTMATCH = 4
|
|
FNM_CASEFOLD = 8
|
|
end
|
|
end
|
|
|
|
class File
|
|
include File::Constants
|
|
end
|