gems.ffi-1.9.7.libtest.StringTest.c Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sass-maven-plugin Show documentation
Show all versions of sass-maven-plugin Show documentation
A Maven Plugin that compiles Sass files.
/*
* Copyright (c) 2007 Wayne Meissner. All rights reserved.
*
* For licensing, see LICENSE.SPECS
*/
#include
int
string_equals(const char* s1, const char* s2)
{
return strcmp(s1, s2) == 0;
}
void
string_set(char* s1, const char* s2)
{
strcpy(s1, s2);
}
void
string_concat(char* dst, const char* src)
{
strcat(dst, src);
}
void
string_dummy(char* dummy)
{
}
const char*
string_null(void)
{
return NULL;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy