Adaptive Framework  0.9.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
Files | Functions
Unicode code point support

Files

file  afw_compile_code_point.h
 Adaptive Framework unicode code point support header.
 

Functions

afw_boolean_t afw_compile_code_point_is_IdentifierStart (afw_code_point_t cp)
 Determine if codepoint matches AFW IdentifierStart production. More...
 
afw_boolean_t afw_compile_code_point_is_IdentifierContinue (afw_code_point_t cp)
 Determine if codepoint matches AFW IdentifierContinue production. More...
 
afw_boolean_t afw_compile_code_point_is_EOL (afw_code_point_t cp)
 Determine if codepoint matches AFW EOL production. More...
 
afw_boolean_t afw_compile_code_point_is_Whitespace (afw_code_point_t cp)
 Determine if codepoint matches Whitespace production. More...
 
afw_boolean_t afw_compile_code_point_is_WhitespaceOrEOL (afw_code_point_t cp)
 Determine if codepoint matches AFW Whitespace or EOL productions. More...
 

Detailed Description

Unicode code point support.

Function Documentation

◆ afw_compile_code_point_is_EOL()

afw_boolean_t afw_compile_code_point_is_EOL ( afw_code_point_t  cp)

Determine if codepoint matches AFW EOL production.

Parameters
cpcode point
Returns
true if match

Definition at line 42 of file afw_compile_code_point.c.

◆ afw_compile_code_point_is_IdentifierContinue()

afw_boolean_t afw_compile_code_point_is_IdentifierContinue ( afw_code_point_t  cp)

Determine if codepoint matches AFW IdentifierContinue production.

Parameters
cpis a Unicode codepoint to test.
Returns
result of test.

Definition at line 31 of file afw_compile_code_point.c.

◆ afw_compile_code_point_is_IdentifierStart()

afw_boolean_t afw_compile_code_point_is_IdentifierStart ( afw_code_point_t  cp)

Determine if codepoint matches AFW IdentifierStart production.

Parameters
cpis a Unicode codepoint to test.
Returns
result of test.

Definition at line 21 of file afw_compile_code_point.c.

◆ afw_compile_code_point_is_Whitespace()

afw_boolean_t afw_compile_code_point_is_Whitespace ( afw_code_point_t  cp)

Determine if codepoint matches Whitespace production.

Parameters
cpcode point
Returns
true if match

Definition at line 54 of file afw_compile_code_point.c.

◆ afw_compile_code_point_is_WhitespaceOrEOL()

afw_boolean_t afw_compile_code_point_is_WhitespaceOrEOL ( afw_code_point_t  cp)

Determine if codepoint matches AFW Whitespace or EOL productions.

Parameters
cpcode point
Returns
true if match

Definition at line 71 of file afw_compile_code_point.c.