@@ -66,7 +66,7 @@ together with a designated C compiler and linker.
66
66
This manual corresponds to GnuCOBOL @value {VERSION }.
67
67
@page
68
68
@vskip 0pt plus 1filll
69
- Copyright @copyright {} 2002-2012, 2014-2023 Free Software Foundation, Inc.@*
69
+ Copyright @copyright {} 2002-2012, 2014-2024 Free Software Foundation, Inc.@*
70
70
Written by Keisuke Nishida, Roger While, Brian Tiffin, Simon Sobisch.
71
71
72
72
@insertcopying
@@ -1597,7 +1597,7 @@ enum cob_runtime_option_switch @{
1597
1597
COB_SET_RUNTIME_RESCAN_ENV /* rescan environment variables */
1598
1598
COB_SET_RUNTIME_DISPLAY_PUNCH_FILE /* 'p' is FILE * */
1599
1599
@} ;
1600
- COB_EXPIMP void cob_set_runtime_option (enum cob_runtime_option_switch opt, void *p);
1600
+ COB_EXT_IMPORT void cob_set_runtime_option (enum cob_runtime_option_switch opt, void *p);
1601
1601
@end smallexample
1602
1602
1603
1603
So from you C code you can tell the GnuCOBOL runtime to redirect TRACE output by:
@@ -1620,7 +1620,7 @@ cob_set_runtime_option (COB_SET_RUNTIME_DISPLAY_PUNCH_FILE,
1620
1620
1621
1621
Another routine can be used to return the current value of the option.
1622
1622
@example
1623
- COB_EXPIMP void *
1623
+ COB_EXT_IMPORT void *
1624
1624
cob_get_runtime_option (enum cob_runtime_option_switch opt);
1625
1625
@end example
1626
1626
@@ -1631,7 +1631,7 @@ When an EBCDIC/ASCII translation table is needed (for instance when calling
1631
1631
sort functions), you can can call the @code {cob_load_collation } function to
1632
1632
retrieve such tables:
1633
1633
@example
1634
- COB_EXPIMP int
1634
+ COB_EXT_IMPORT int
1635
1635
cob_load_collation (const char *col_name,
1636
1636
cob_u8_t *ebcdic_to_ascii,
1637
1637
cob_u8_t *ascii_to_ebcdic)
0 commit comments