-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
167 additions
and
88 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
174 changes: 100 additions & 74 deletions
174
src/lib/forbear_bar_object.f90 → src/lib/forbear_bar_object.F90
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
!< **forbear** project, definition of parametric kinds. | ||
|
||
module forbear_kinds | ||
!< **forbear** project, definition of parametric kinds. | ||
implicit none | ||
private | ||
public :: ASCII | ||
public :: UCS4 | ||
|
||
#ifdef ASCII_SUPPORTED | ||
integer, parameter :: ASCII = selected_char_kind('ascii') !< ASCII character set kind. | ||
#else | ||
integer, parameter :: ASCII = selected_char_kind('default') !< ASCII character set kind. | ||
#endif | ||
#ifdef UCS4_SUPPORTED | ||
integer, parameter :: UCS4 = selected_char_kind('iso_10646') !< Unicode character set kind. | ||
#else | ||
integer, parameter :: UCS4 = selected_char_kind('default') !< Unicode character set kind. | ||
#endif | ||
endmodule forbear_kinds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule FACE
updated
7 files
+3 −6 | fobos | |
+287 −0 | src/lib/face.F90 | |
+0 −219 | src/lib/face.f90 | |
+0 −7 | src/tests/face_test_basic.f90 | |
+0 −7 | src/tests/face_test_colors.f90 | |
+0 −7 | src/tests/face_test_styles.f90 | |
+17 −0 | src/tests/face_test_ucs4.F90 |