Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
NP_TMcode
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Giacomo Mulas
NP_TMcode
Commits
65cd9ad6
Commit
65cd9ad6
authored
1 year ago
by
Giovanni La Mura
Browse files
Options
Downloads
Patches
Plain Diff
Add documentation to FORTRAN wrapper functions
parent
8e99b10d
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
doc/src/config.dox
+2
-1
2 additions, 1 deletion
doc/src/config.dox
src/include/file_io.h
+37
-0
37 additions, 0 deletions
src/include/file_io.h
with
39 additions
and
1 deletion
doc/src/config.dox
+
2
−
1
View file @
65cd9ad6
...
@@ -342,7 +342,7 @@ OPTIMIZE_OUTPUT_SLICE = NO
...
@@ -342,7 +342,7 @@ OPTIMIZE_OUTPUT_SLICE = NO
#
#
# Note see also the list of default file extension mappings.
# Note see also the list of default file extension mappings.
EXTENSION_MAPPING =
EXTENSION_MAPPING =
f=FortranFixed f90=FortranFree
# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
# according to the Markdown format, which allows for more readable
# according to the Markdown format, which allows for more readable
...
@@ -984,6 +984,7 @@ INPUT_FILE_ENCODING =
...
@@ -984,6 +984,7 @@ INPUT_FILE_ENCODING =
# *.f18, *.f, *.for, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice.
# *.f18, *.f, *.for, *.vhd, *.vhdl, *.ucf, *.qsf and *.ice.
FILE_PATTERNS = *.cpp \
FILE_PATTERNS = *.cpp \
*.f \
*.h \
*.h \
*.md
*.md
...
...
This diff is collapsed.
Click to expand it.
src/include/file_io.h
+
37
−
0
View file @
65cd9ad6
/*! \file file_io.h
*
* C++ wrapper of FORTRAN I/O operations with files.
*/
/*! \brief Open a file for subsequent access.
*
* \param uid: `int*` Pointer to the unit ID to be associated to the file.
* \param name: `char*` C-string for file name (max. length of 63).
* \param sta: `char*` C-string for file status (max. length of 7).
* \param mode: `char*` C-string for access mode (max. length of 11).
*/
extern
"C"
void
open_file_
(
int
*
,
const
char
*
,
const
char
*
,
const
char
*
);
extern
"C"
void
open_file_
(
int
*
,
const
char
*
,
const
char
*
,
const
char
*
);
/*! \brief Close a previously opened file.
*
* \param uid: `int*` Pointer to the unit ID of the file.
*/
extern
"C"
void
close_file_
(
int
*
);
extern
"C"
void
close_file_
(
int
*
);
/*! \brief Read an integer value from a file.
*
* \param uid: `int*` Pointer to the unit ID of the file.
* \param value: `int*` Pointer of the variable to be updated.
*/
extern
"C"
void
read_int_
(
int
*
,
int
*
);
extern
"C"
void
read_int_
(
int
*
,
int
*
);
/*! \brief Write a complex value to a file.
*
* \param uid: `int*` Pointer to the unit ID of the file.
* \param real: `double*` Pointer to the real part of the value.
* \param imag: `double*` Pointer to the imaginary part of the value.
*/
extern
"C"
void
write_complex_
(
int
*
,
double
*
,
double
*
);
extern
"C"
void
write_complex_
(
int
*
,
double
*
,
double
*
);
/*! \brief Write a double precision float value to a file.
*
* \param uid: `int*` Pointer to the unit ID of the file.
* \param value: `double*` Pointer to the variable to be written.
*/
extern
"C"
void
write_double_
(
int
*
,
double
*
);
extern
"C"
void
write_double_
(
int
*
,
double
*
);
/*! \brief Write an integer value to a file.
*
* \param uid: `int*` Pointer to the unit ID of the file.
* \param value: `int*` Pointer to the variable to be written.
*/
extern
"C"
void
write_int_
(
int
*
,
int
*
);
extern
"C"
void
write_int_
(
int
*
,
int
*
);
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