Skip to content
Snippets Groups Projects
Commit 31708f70 authored by Lukas Stadler's avatar Lukas Stadler
Browse files

provide macros and public functions for IS_UTF8, etc.

parent d05a54a9
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
* Copyright (c) 1995, 1996, 1997 Robert Gentleman and Ross Ihaka
* Copyright (c) 1995-2014, The R Core Team
* Copyright (c) 2002-2008, The R Foundation
* Copyright (c) 2015, 2016, Oracle and/or its affiliates
* Copyright (c) 2015, 2017, Oracle and/or its affiliates
*
* All rights reserved.
*/
......@@ -545,3 +545,4 @@ Rboolean IS_BYTES(SEXP x) { return FALSE; }
Rboolean IS_LATIN1(SEXP x) { return FALSE; }
Rboolean IS_ASCII(SEXP x) { return FALSE; }
Rboolean IS_UTF8(SEXP x) { return TRUE; }
Rboolean ENC_KNOWN(SEXP x) { return TRUE; }
......@@ -61,6 +61,19 @@ sexp = '''#ifdef FASTR
typedef void *SEXP;
#define DATAPTR(x)\t\tR_DATAPTR(x)
void *(R_DATAPTR)(SEXP x);
#define IS_BYTES IS_BYTES
#define IS_LATIN1 IS_LATIN1
#define IS_ASCII IS_ASCII
#define IS_UTF8 IS_UTF8
#define ENC_KNOWN ENC_KNOWN
Rboolean IS_BYTES(SEXP x);
Rboolean IS_LATIN1(SEXP x);
Rboolean IS_ASCII(SEXP x);
Rboolean IS_UTF8(SEXP x);
Rboolean ENC_KNOWN(SEXP x);
#else
'''
use_internals_begin = '''#if defined (USE_RINTERNALS_DEFS) && (defined (USE_RINTERNALS) || defined (FASTR))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment