Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
c41ac977
Commit
c41ac977
authored
4 years ago
by
Andre Maroneze
Browse files
Options
Downloads
Patches
Plain Diff
[Filepath] add Filepath.Normalized.is_file
parent
547e1155
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/libraries/utils/filepath.ml
+4
-0
4 additions, 0 deletions
src/libraries/utils/filepath.ml
src/libraries/utils/filepath.mli
+6
-0
6 additions, 0 deletions
src/libraries/utils/filepath.mli
with
10 additions
and
0 deletions
src/libraries/utils/filepath.ml
+
4
−
0
View file @
c41ac977
...
@@ -252,6 +252,10 @@ module Normalized = struct
...
@@ -252,6 +252,10 @@ module Normalized = struct
let
pp_abs
fmt
p
=
Format
.
fprintf
fmt
"%s"
p
let
pp_abs
fmt
p
=
Format
.
fprintf
fmt
"%s"
p
let
unknown
=
normalize
""
let
unknown
=
normalize
""
let
is_unknown
fp
=
equal
fp
unknown
let
is_unknown
fp
=
equal
fp
unknown
let
is_file
fp
=
try
(
Unix
.
stat
(
fp
:>
string
))
.
Unix
.
st_kind
=
Unix
.
S_REG
with
_
->
false
end
end
type
position
=
type
position
=
...
...
This diff is collapsed.
Click to expand it.
src/libraries/utils/filepath.mli
+
6
−
0
View file @
c41ac977
...
@@ -144,6 +144,12 @@ module Normalized: sig
...
@@ -144,6 +144,12 @@ module Normalized: sig
(** @since 20.0-Calcium *)
(** @since 20.0-Calcium *)
val
is_unknown
:
t
->
bool
val
is_unknown
:
t
->
bool
(** [is_file f] returns [true] iff [f] points to a regular file
(or a symbolic link pointing to a file).
Returns [false] if any errors happen when [stat]'ing the file.
@since Frama-C+dev *)
val
is_file
:
t
->
bool
end
end
(** Describes a position in a source file.
(** Describes a position in a source file.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment