1N/A/***********************************************************************
1N/A* *
1N/A* This software is part of the ast package *
1N/A* Copyright (c) 1985-2011 AT&T Intellectual Property *
1N/A* and is licensed under the *
1N/A* Common Public License, Version 1.0 *
1N/A* by AT&T Intellectual Property *
1N/A* *
1N/A* A copy of the License is available at *
1N/A* http://www.opensource.org/licenses/cpl1.0.txt *
1N/A* (with md5 checksum 059e8cd6165cb4c31e351f2b69388fd9) *
1N/A* *
1N/A* Information and Software Systems Research *
1N/A* AT&T Research *
1N/A* Florham Park NJ *
1N/A* *
1N/A* Glenn Fowler <gsf@research.att.com> *
1N/A* David Korn <dgk@research.att.com> *
1N/A* Phong Vo <kpv@research.att.com> *
1N/A* *
1N/A***********************************************************************/
1N/A#pragma prototyped
1N/A
1N/A/*
1N/A * Glenn Fowler
1N/A * AT&T Research
1N/A *
1N/A * copy table with element size n
1N/A * indexed by CC_ASCII to table
1N/A * indexed by CC_NATIVE
1N/A */
1N/A
1N/A#include <ast.h>
1N/A#include <ccode.h>
1N/A
1N/Avoid*
1N/Accnative(void* b, const void* a, size_t n)
1N/A{
1N/A#if CC_ASCII == CC_NATIVE
1N/A return memcpy(b, a, n * (UCHAR_MAX + 1));
1N/A#else
1N/A register int c;
1N/A register const unsigned char* m;
1N/A register unsigned char* cb = (unsigned char*)b;
1N/A register unsigned char* ca = (unsigned char*)a;
1N/A
1N/A m = CCMAP(CC_ASCII, CC_NATIVE);
1N/A if (n == sizeof(char))
1N/A for (c = 0; c <= UCHAR_MAX; c++)
1N/A cb[c] = ca[m[c]];
1N/A else
1N/A for (c = 0; c <= UCHAR_MAX; c++)
1N/A memcpy(cb + n * c, ca + n * m[c], n);
1N/A return b;
1N/A#endif
1N/A}