doubt on traits with memchr and memcmp

W

wolverine

Hi
Is there any problem in the following traits if i
1) use memcmp for compare
2) use memchr for find
3) memset to assign

I am asking this since memset and memchr accepts an "int" as character
to set and search respectively. So if i use them with "unsigned short"
which is my char_type will their be any problem ?

struct char_traits
{
typedef unsigned short char_type;
typedef int int_type;

typedef streampos pos_type;
typedef streamoff off_type;
typedef mbstate_t state_type;

static void assign(char_type& __c1, const char_type& __c2)
{
__c1 = __c2;
}

static bool eq(const char_type& __c1, const char_type& __c2)
{
return __c1 == __c2;
}

static bool lt(const char_type& __c1, const char_type& __c2)
{
return __c1 < __c2;
}

static int compare(const char_type* __s1, const char_type* __s2,
size_t __n)
{
for (size_t __i = 0; __i < __n; ++__i)
if (!eq(__s1[__i], __s2[__i]))
return lt(__s1[__i], __s2[__i]) ? -1 : 1;
return 0;
}

static const char_type* find(const char_type* __s, size_t __n, const
char_type& __a)
{
for (const char_type* __p = __s; size_t(__p - __s) < __n; ++__p)
if (*__p == __a) return __p;
return 0;
}

static char_type* assign(char_type* __s, size_t __n, char_type __a)
{
for (char_type* __p = __s; __p < __s + __n; ++__p)
assign(*__p, __a);
return __s;
}
};

Thanks in advance
Kiran.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,527
Members
45,000
Latest member
MurrayKeync

Latest Threads

Top