OOStuBS - Technische Informatik II (TI-II)  2.4
string.h
gehe zur Dokumentation dieser Datei
1 #ifndef __string_header__
2 #define __string_header__
3 
4 #include <stddef.h>
5 
6 extern "C" int strcmp(const char* a, const char* b);
7 extern "C" int strncmp(const char* a, const char* b, size_t n);
8 
9 
10 #endif