Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cstr.h « base « src - github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c475aadcd9a131bc93dcb45314c225dec13a96cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * \file   cstr.h
 * \brief  C string handling.
 * \author Copyright (c) 2002-2008 Jason Perkins and the Premake project
 */
#if !defined(PREMAKE_CSTR_H)
#define PREMAKE_CSTR_H

int cstr_ends_with(const char* str, const char* expected);
int cstr_eq(const char* str, const char* expected);

#endif