| 902 | |
| 903 | |
| 904 | bool INTL_data(const dsc* pText) |
| 905 | { |
| 906 | /************************************** |
| 907 | * |
| 908 | * I N T L _ d a t a |
| 909 | * |
| 910 | ************************************** |
| 911 | * |
| 912 | * Functional description |
| 913 | * Given an input text descriptor, |
| 914 | * return true if the data pointed to represents |
| 915 | * international text (subject to user defined or non-binary |
| 916 | * collation or comparison). |
| 917 | * |
| 918 | **************************************/ |
| 919 | |
| 920 | fb_assert(pText != NULL); |
| 921 | |
| 922 | if (!IS_TEXT(pText)) |
| 923 | return false; |
| 924 | |
| 925 | if (!INTERNAL_TTYPE(pText)) |
| 926 | return true; |
| 927 | |
| 928 | return false; |
| 929 | } |
| 930 | |
| 931 | bool INTL_data_or_binary(const dsc* pText) |
| 932 | { |
no outgoing calls
no test coverage detected