Changeset 70966985 in rtems
- Timestamp:
- Dec 5, 2018, 9:23:40 PM (2 years ago)
- Branches:
- 5, master
- Children:
- 36e1b82
- Parents:
- a115818
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
testsuites/psxtests/psxhdrs/strings/strncasecmp_l.c
ra115818 r70966985 3 3 * @brief strcasecmp_l() API Conformance Test 4 4 */ 5 5 6 /* 6 7 * COPYRIGHT (c) 2018. … … 32 33 char *string1 = "STRING"; 33 34 char *string2 = "string"; 35 locale_t locale = NULL; 34 36 int result; 35 37 36 result = strncasecmp_l( string1, string2, 6, LC_CTYPE);38 result = strncasecmp_l( string1, string2, 6, locale ); 37 39 38 40 return result;
Note: See TracChangeset
for help on using the changeset viewer.