source: XIOS3/trunk/src/interface/c/clogical_bool_conversion.cpp @ 2634

Last change on this file since 2634 was 2620, checked in by jderouillat, 4 months ago

Modify fortran-C interfaces to manage logical-bool conversion, the optimizations of OneAPI could produce bugs regarding the logical-bool encodings.

File size: 134 bytes
Line 
1
2extern "C"
3{
4  bool cxios_set_logical_true()
5  {
6    return true;
7  }
8
9  bool cxios_set_logical_false()
10  {
11    return false;
12  }
13
14}
Note: See TracBrowser for help on using the repository browser.