Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 26 | pmbaty | 1 | /* ucl_str.c -- string functions for the the UCL library |
| 2 | |||
| 3 | This file is part of the UCL data compression library. |
||
| 4 | |||
| 5 | Copyright (C) 1996-2004 Markus Franz Xaver Johannes Oberhumer |
||
| 6 | All Rights Reserved. |
||
| 7 | |||
| 8 | The UCL library is free software; you can redistribute it and/or |
||
| 9 | modify it under the terms of the GNU General Public License as |
||
| 10 | published by the Free Software Foundation; either version 2 of |
||
| 11 | the License, or (at your option) any later version. |
||
| 12 | |||
| 13 | The UCL library is distributed in the hope that it will be useful, |
||
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
| 16 | GNU General Public License for more details. |
||
| 17 | |||
| 18 | You should have received a copy of the GNU General Public License |
||
| 19 | along with the UCL library; see the file COPYING. |
||
| 20 | If not, write to the Free Software Foundation, Inc., |
||
| 21 | 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
||
| 22 | |||
| 23 | Markus F.X.J. Oberhumer |
||
| 24 | <markus@oberhumer.com> |
||
| 25 | http://www.oberhumer.com/opensource/ucl/ |
||
| 26 | */ |
||
| 27 | |||
| 28 | |||
| 29 | #include "ucl_conf.h" |
||
| 30 | |||
| 31 | #undef ucl_memcmp |
||
| 32 | #undef ucl_memcpy |
||
| 33 | #undef ucl_memmove |
||
| 34 | #undef ucl_memset |
||
| 35 | |||
| 36 | |||
| 37 | /*********************************************************************** |
||
| 38 | // slow but portable <string.h> stuff, only used in assertions |
||
| 39 | ************************************************************************/ |
||
| 40 | |||
| 41 | #if !defined(__UCL_MMODEL_HUGE) |
||
| 42 | # undef ACC_HAVE_MM_HUGE_PTR |
||
| 43 | #endif |
||
| 44 | #define acc_hsize_t ucl_uint |
||
| 45 | #define acc_hvoid_p ucl_voidp |
||
| 46 | #define acc_hbyte_p ucl_bytep |
||
| 47 | #define ACCLIB_PUBLIC(r,f) UCL_PUBLIC(r) f |
||
| 48 | #define acc_hmemcmp ucl_memcmp |
||
| 49 | #define acc_hmemcpy ucl_memcpy |
||
| 50 | #define acc_hmemmove ucl_memmove |
||
| 51 | #define acc_hmemset ucl_memset |
||
| 52 | #include "acc/acclib/hmemcpy.ch" |
||
| 53 | #undef ACCLIB_PUBLIC |
||
| 54 | |||
| 55 | |||
| 56 | /* |
||
| 57 | vi:ts=4:et |
||
| 58 | */ |