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

github.com/lexborisov/Modest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/mycss/selectors/pseudo.c')
-rw-r--r--source/mycss/selectors/pseudo.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/mycss/selectors/pseudo.c b/source/mycss/selectors/pseudo.c
index 4488a4d..39b2790 100644
--- a/source/mycss/selectors/pseudo.c
+++ b/source/mycss/selectors/pseudo.c
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2016 Alexander Borisov
+ Copyright (C) 2016-2017 Alexander Borisov
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
@@ -20,7 +20,7 @@
#include "mycss/selectors/pseudo.h"
#include "mycss/selectors/pseudo_resource.h"
-#include "myhtml/utils/resources.h"
+#include "mycore/utils/resources.h"
/////////////////////////////////////////////////////////
//// Functions for a find Begin Function
@@ -28,15 +28,15 @@
/////////////////////////////////////////////////////////
const mycss_selectots_pseudo_begin_entry_t * mycss_pseudo_begin_entry_by_name(const char* name, size_t length, size_t static_size, const mycss_selectots_pseudo_begin_entry_t* pseudo)
{
- size_t idx = ((myhtml_string_chars_lowercase_map[ (const unsigned char)name[0] ] *
- myhtml_string_chars_lowercase_map[ (const unsigned char)name[(length - 1)] ] *
+ size_t idx = ((mycore_string_chars_lowercase_map[ (const unsigned char)name[0] ] *
+ mycore_string_chars_lowercase_map[ (const unsigned char)name[(length - 1)] ] *
length)
% static_size) + 1;
while (pseudo[idx].name)
{
if(pseudo[idx].length == length) {
- if(myhtml_strncasecmp(pseudo[idx].name, name, length) == 0)
+ if(mycore_strncasecmp(pseudo[idx].name, name, length) == 0)
return &pseudo[idx];
if(pseudo[idx].next)