/*
    Datei strcmp.h

    Prototypen von strcmpnew und strncmpnew
*/

//nur einmal einbinden
#if _MSC_VER > 1000
#pragma once
#endif

#ifndef _INC_STRCMP_NEW
#define _INC_STRCMP_NEW

//für Typ size_t
#include <stddef.h>

extern "C" int strcmpnew(const char *str1, const char *str2);
extern "C" int strncmpnew(const char *str1, const char *str2, size_t n);


#endif //_INC_STRCMP_NEW
