| Updated: October 28, 2024 | 
Compare two strings, up to a given length
#include <string.h>
int strncmp( const char* s1,
             const char* s2,
             size_t n );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The strncmp() function compares up to n characters from the strings pointed to by s1 and s2.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int main( void )
  {
    printf( "%d\n", strncmp( "abcdef", "abcDEF", 10 ) );
    printf( "%d\n", strncmp( "abcdef", "abcDEF",  6 ) );
    printf( "%d\n", strncmp( "abcdef", "abcDEF",  3 ) );
    printf( "%d\n", strncmp( "abcdef", "abcDEF",  0 ) );
    return EXIT_SUCCESS;
  }
produces the output:
1 1 0 0
| Safety: | |
|---|---|
| Cancellation point | No | 
| Interrupt handler | Yes | 
| Signal handler | Yes | 
| Thread | Yes |