summaryrefslogtreecommitdiff
path: root/src/fl_encoding_mac_roman.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/fl_encoding_mac_roman.cxx')
-rw-r--r--src/fl_encoding_mac_roman.cxx11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/fl_encoding_mac_roman.cxx b/src/fl_encoding_mac_roman.cxx
index 2036fb4dd..50baaf557 100644
--- a/src/fl_encoding_mac_roman.cxx
+++ b/src/fl_encoding_mac_roman.cxx
@@ -76,6 +76,12 @@ static uchar roman2latin[128] = {
static char *buf = 0;
static int n_buf = 0;
+/**
+ * @cond DriverDev
+ * @addtogroup DriverDeveloper
+ * @{
+ */
+
const char *Fl_System_Driver::local_to_mac_roman(const char *t, int n)
{
if (n==-1) n = (int) strlen(t);
@@ -118,6 +124,11 @@ const char *Fl_System_Driver::mac_roman_to_local(const char *t, int n)
return buf;
}
+/**
+ * @}
+ * @endcond
+ */
+
const char *fl_local_to_mac_roman(const char *t, int n) {
return Fl::system_driver()->local_to_mac_roman(t, n);
}