msi/tests: Test for error control flag handling.
[wine.git] / dlls / msvcrt / heap.c
blob3fe0227577eced495b1f74b98dc07d5281e19fa3
1 /*
2 * msvcrt.dll heap functions
4 * Copyright 2000 Jon Griffiths
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 * Note: Win32 heap operations are MT safe. We only lock the new
21 * handler and non atomic heap operations
24 #include "msvcrt.h"
25 #include "mtdll.h"
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
30 /* MT */
31 #define LOCK_HEAP _mlock( _HEAP_LOCK )
32 #define UNLOCK_HEAP _munlock( _HEAP_LOCK )
34 /* _aligned */
35 #define SAVED_PTR(x) ((void *)((DWORD_PTR)((char *)x - sizeof(void *)) & \
36 ~(sizeof(void *) - 1)))
37 #define ALIGN_PTR(ptr, alignment, offset) ((void *) \
38 ((((DWORD_PTR)((char *)ptr + alignment + sizeof(void *) + offset)) & \
39 ~(alignment - 1)) - offset))
41 #define SB_HEAP_ALIGN 16
43 static HANDLE heap, sb_heap;
45 typedef int (CDECL *MSVCRT_new_handler_func)(MSVCRT_size_t size);
47 static MSVCRT_new_handler_func MSVCRT_new_handler;
48 static int MSVCRT_new_mode;
50 /* FIXME - According to documentation it should be 8*1024, at runtime it returns 16 */
51 static unsigned int MSVCRT_amblksiz = 16;
52 /* FIXME - According to documentation it should be 480 bytes, at runtime default is 0 */
53 static MSVCRT_size_t MSVCRT_sbh_threshold = 0;
55 static void* msvcrt_heap_alloc(DWORD flags, MSVCRT_size_t size)
57 if(size < MSVCRT_sbh_threshold)
59 void *memblock, *temp, **saved;
61 temp = HeapAlloc(sb_heap, flags, size+sizeof(void*)+SB_HEAP_ALIGN);
62 if(!temp) return NULL;
64 memblock = ALIGN_PTR(temp, SB_HEAP_ALIGN, 0);
65 saved = SAVED_PTR(memblock);
66 *saved = temp;
67 return memblock;
70 return HeapAlloc(heap, flags, size);
73 static void* msvcrt_heap_realloc(DWORD flags, void *ptr, MSVCRT_size_t size)
75 if(sb_heap && ptr && !HeapValidate(heap, 0, ptr))
77 /* TODO: move data to normal heap if it exceeds sbh_threshold limit */
78 void *memblock, *temp, **saved;
79 MSVCRT_size_t old_padding, new_padding, old_size;
81 saved = SAVED_PTR(ptr);
82 old_padding = (char*)ptr - (char*)*saved;
83 old_size = HeapSize(sb_heap, 0, *saved);
84 if(old_size == -1)
85 return NULL;
86 old_size -= old_padding;
88 temp = HeapReAlloc(sb_heap, flags, *saved, size+sizeof(void*)+SB_HEAP_ALIGN);
89 if(!temp) return NULL;
91 memblock = ALIGN_PTR(temp, SB_HEAP_ALIGN, 0);
92 saved = SAVED_PTR(memblock);
93 new_padding = (char*)memblock - (char*)temp;
95 if(new_padding != old_padding)
96 memmove(memblock, (char*)temp+old_padding, old_size>size ? size : old_size);
98 *saved = temp;
99 return memblock;
102 return HeapReAlloc(heap, flags, ptr, size);
105 static BOOL msvcrt_heap_free(void *ptr)
107 if(sb_heap && ptr && !HeapValidate(heap, 0, ptr))
109 void **saved = SAVED_PTR(ptr);
110 return HeapFree(sb_heap, 0, *saved);
113 return HeapFree(heap, 0, ptr);
116 static MSVCRT_size_t msvcrt_heap_size(void *ptr)
118 if(sb_heap && ptr && !HeapValidate(heap, 0, ptr))
120 void **saved = SAVED_PTR(ptr);
121 return HeapSize(sb_heap, 0, *saved);
124 return HeapSize(heap, 0, ptr);
127 /*********************************************************************
128 * ??2@YAPAXI@Z (MSVCRT.@)
130 void* CDECL MSVCRT_operator_new(MSVCRT_size_t size)
132 void *retval;
133 int freed;
134 MSVCRT_new_handler_func handler;
138 retval = msvcrt_heap_alloc(0, size);
139 if(retval)
141 TRACE("(%ld) returning %p\n", size, retval);
142 return retval;
145 handler = MSVCRT_new_handler;
146 if(handler)
147 freed = (*handler)(size);
148 else
149 freed = 0;
150 } while(freed);
152 TRACE("(%ld) out of memory\n", size);
153 #if _MSVCR_VER >= 80
154 throw_bad_alloc("bad allocation");
155 #endif
156 return NULL;
160 /*********************************************************************
161 * ??2@YAPAXIHPBDH@Z (MSVCRT.@)
163 void* CDECL MSVCRT_operator_new_dbg(MSVCRT_size_t size, int type, const char *file, int line)
165 return MSVCRT_operator_new( size );
169 /*********************************************************************
170 * ??3@YAXPAX@Z (MSVCRT.@)
172 void CDECL MSVCRT_operator_delete(void *mem)
174 TRACE("(%p)\n", mem);
175 msvcrt_heap_free(mem);
179 /*********************************************************************
180 * ?_query_new_handler@@YAP6AHI@ZXZ (MSVCRT.@)
182 MSVCRT_new_handler_func CDECL MSVCRT__query_new_handler(void)
184 return MSVCRT_new_handler;
188 /*********************************************************************
189 * ?_query_new_mode@@YAHXZ (MSVCRT.@)
191 int CDECL MSVCRT__query_new_mode(void)
193 return MSVCRT_new_mode;
196 /*********************************************************************
197 * ?_set_new_handler@@YAP6AHI@ZP6AHI@Z@Z (MSVCRT.@)
199 MSVCRT_new_handler_func CDECL MSVCRT__set_new_handler(MSVCRT_new_handler_func func)
201 MSVCRT_new_handler_func old_handler;
202 LOCK_HEAP;
203 old_handler = MSVCRT_new_handler;
204 MSVCRT_new_handler = func;
205 UNLOCK_HEAP;
206 return old_handler;
209 /*********************************************************************
210 * ?set_new_handler@@YAP6AXXZP6AXXZ@Z (MSVCRT.@)
212 MSVCRT_new_handler_func CDECL MSVCRT_set_new_handler(void *func)
214 TRACE("(%p)\n",func);
215 MSVCRT__set_new_handler(NULL);
216 return NULL;
219 /*********************************************************************
220 * ?_set_new_mode@@YAHH@Z (MSVCRT.@)
222 int CDECL MSVCRT__set_new_mode(int mode)
224 int old_mode;
225 LOCK_HEAP;
226 old_mode = MSVCRT_new_mode;
227 MSVCRT_new_mode = mode;
228 UNLOCK_HEAP;
229 return old_mode;
232 /*********************************************************************
233 * _callnewh (MSVCRT.@)
235 int CDECL _callnewh(MSVCRT_size_t size)
237 int ret = 0;
238 MSVCRT_new_handler_func handler = MSVCRT_new_handler;
239 if(handler)
240 ret = (*handler)(size) ? 1 : 0;
241 return ret;
244 /*********************************************************************
245 * _expand (MSVCRT.@)
247 void* CDECL _expand(void* mem, MSVCRT_size_t size)
249 return msvcrt_heap_realloc(HEAP_REALLOC_IN_PLACE_ONLY, mem, size);
252 /*********************************************************************
253 * _heapchk (MSVCRT.@)
255 int CDECL _heapchk(void)
257 if (!HeapValidate(heap, 0, NULL) ||
258 (sb_heap && !HeapValidate(sb_heap, 0, NULL)))
260 msvcrt_set_errno(GetLastError());
261 return MSVCRT__HEAPBADNODE;
263 return MSVCRT__HEAPOK;
266 /*********************************************************************
267 * _heapmin (MSVCRT.@)
269 int CDECL _heapmin(void)
271 if (!HeapCompact( heap, 0 ) ||
272 (sb_heap && !HeapCompact( sb_heap, 0 )))
274 if (GetLastError() != ERROR_CALL_NOT_IMPLEMENTED)
275 msvcrt_set_errno(GetLastError());
276 return -1;
278 return 0;
281 /*********************************************************************
282 * _heapwalk (MSVCRT.@)
284 int CDECL _heapwalk(struct MSVCRT__heapinfo* next)
286 PROCESS_HEAP_ENTRY phe;
288 if (sb_heap)
289 FIXME("small blocks heap not supported\n");
291 LOCK_HEAP;
292 phe.lpData = next->_pentry;
293 phe.cbData = next->_size;
294 phe.wFlags = next->_useflag == MSVCRT__USEDENTRY ? PROCESS_HEAP_ENTRY_BUSY : 0;
296 if (phe.lpData && phe.wFlags & PROCESS_HEAP_ENTRY_BUSY &&
297 !HeapValidate( heap, 0, phe.lpData ))
299 UNLOCK_HEAP;
300 msvcrt_set_errno(GetLastError());
301 return MSVCRT__HEAPBADNODE;
306 if (!HeapWalk( heap, &phe ))
308 UNLOCK_HEAP;
309 if (GetLastError() == ERROR_NO_MORE_ITEMS)
310 return MSVCRT__HEAPEND;
311 msvcrt_set_errno(GetLastError());
312 if (!phe.lpData)
313 return MSVCRT__HEAPBADBEGIN;
314 return MSVCRT__HEAPBADNODE;
316 } while (phe.wFlags & (PROCESS_HEAP_REGION|PROCESS_HEAP_UNCOMMITTED_RANGE));
318 UNLOCK_HEAP;
319 next->_pentry = phe.lpData;
320 next->_size = phe.cbData;
321 next->_useflag = phe.wFlags & PROCESS_HEAP_ENTRY_BUSY ? MSVCRT__USEDENTRY : MSVCRT__FREEENTRY;
322 return MSVCRT__HEAPOK;
325 /*********************************************************************
326 * _heapset (MSVCRT.@)
328 int CDECL _heapset(unsigned int value)
330 int retval;
331 struct MSVCRT__heapinfo heap;
333 memset( &heap, 0, sizeof(heap) );
334 LOCK_HEAP;
335 while ((retval = _heapwalk(&heap)) == MSVCRT__HEAPOK)
337 if (heap._useflag == MSVCRT__FREEENTRY)
338 memset(heap._pentry, value, heap._size);
340 UNLOCK_HEAP;
341 return retval == MSVCRT__HEAPEND? MSVCRT__HEAPOK : retval;
344 /*********************************************************************
345 * _heapadd (MSVCRT.@)
347 int CDECL _heapadd(void* mem, MSVCRT_size_t size)
349 TRACE("(%p,%ld) unsupported in Win32\n", mem,size);
350 *MSVCRT__errno() = MSVCRT_ENOSYS;
351 return -1;
354 /*********************************************************************
355 * _get_heap_handle (MSVCRT.@)
357 MSVCRT_intptr_t CDECL _get_heap_handle(void)
359 return (MSVCRT_intptr_t)heap;
362 /*********************************************************************
363 * _msize (MSVCRT.@)
365 MSVCRT_size_t CDECL _msize(void* mem)
367 MSVCRT_size_t size = msvcrt_heap_size(mem);
368 if (size == ~(MSVCRT_size_t)0)
370 WARN(":Probably called with non wine-allocated memory, ret = -1\n");
371 /* At least the Win32 crtdll/msvcrt also return -1 in this case */
373 return size;
376 /*********************************************************************
377 * _aligned_msize (MSVCR100.@)
379 size_t CDECL _aligned_msize(void *p, MSVCRT_size_t alignment, MSVCRT_size_t offset)
381 void **alloc_ptr;
383 if(!MSVCRT_CHECK_PMT(p)) return -1;
385 if(alignment < sizeof(void*))
386 alignment = sizeof(void*);
388 alloc_ptr = SAVED_PTR(p);
389 return _msize(*alloc_ptr)-alignment-sizeof(void*);
392 /*********************************************************************
393 * calloc (MSVCRT.@)
395 void* CDECL MSVCRT_calloc(MSVCRT_size_t count, MSVCRT_size_t size)
397 MSVCRT_size_t bytes = count*size;
399 if (size && bytes / size != count)
401 *MSVCRT__errno() = MSVCRT_ENOMEM;
402 return NULL;
405 return msvcrt_heap_alloc(HEAP_ZERO_MEMORY, bytes);
408 /*********************************************************************
409 * free (MSVCRT.@)
411 void CDECL MSVCRT_free(void* ptr)
413 msvcrt_heap_free(ptr);
416 /*********************************************************************
417 * malloc (MSVCRT.@)
419 void* CDECL MSVCRT_malloc(MSVCRT_size_t size)
421 void *ret = msvcrt_heap_alloc(0, size);
422 if (!ret)
423 *MSVCRT__errno() = MSVCRT_ENOMEM;
424 return ret;
427 /*********************************************************************
428 * realloc (MSVCRT.@)
430 void* CDECL MSVCRT_realloc(void* ptr, MSVCRT_size_t size)
432 if (!ptr) return MSVCRT_malloc(size);
433 if (size) return msvcrt_heap_realloc(0, ptr, size);
434 MSVCRT_free(ptr);
435 return NULL;
438 /*********************************************************************
439 * _recalloc (MSVCR100.@)
441 void* CDECL _recalloc(void *mem, MSVCRT_size_t num, MSVCRT_size_t size)
443 MSVCRT_size_t old_size;
444 void *ret;
446 if(!mem)
447 return MSVCRT_calloc(num, size);
449 size = num*size;
450 old_size = _msize(mem);
452 ret = MSVCRT_realloc(mem, size);
453 if(!ret) {
454 *MSVCRT__errno() = MSVCRT_ENOMEM;
455 return NULL;
458 if(size>old_size)
459 memset((BYTE*)ret+old_size, 0, size-old_size);
460 return ret;
463 /*********************************************************************
464 * __p__amblksiz (MSVCRT.@)
466 unsigned int* CDECL __p__amblksiz(void)
468 return &MSVCRT_amblksiz;
471 /*********************************************************************
472 * _get_sbh_threshold (MSVCRT.@)
474 MSVCRT_size_t CDECL _get_sbh_threshold(void)
476 return MSVCRT_sbh_threshold;
479 /*********************************************************************
480 * _set_sbh_threshold (MSVCRT.@)
482 int CDECL _set_sbh_threshold(MSVCRT_size_t threshold)
484 #ifdef _WIN64
485 return 0;
486 #else
487 if(threshold > 1016)
488 return 0;
490 if(!sb_heap)
492 sb_heap = HeapCreate(0, 0, 0);
493 if(!sb_heap)
494 return 0;
497 MSVCRT_sbh_threshold = (threshold+0xf) & ~0xf;
498 return 1;
499 #endif
502 /*********************************************************************
503 * _aligned_free (MSVCRT.@)
505 void CDECL _aligned_free(void *memblock)
507 TRACE("(%p)\n", memblock);
509 if (memblock)
511 void **saved = SAVED_PTR(memblock);
512 MSVCRT_free(*saved);
516 /*********************************************************************
517 * _aligned_offset_malloc (MSVCRT.@)
519 void * CDECL _aligned_offset_malloc(MSVCRT_size_t size, MSVCRT_size_t alignment, MSVCRT_size_t offset)
521 void *memblock, *temp, **saved;
522 TRACE("(%lu, %lu, %lu)\n", size, alignment, offset);
524 /* alignment must be a power of 2 */
525 if ((alignment & (alignment - 1)) != 0)
527 *MSVCRT__errno() = MSVCRT_EINVAL;
528 return NULL;
531 /* offset must be less than size */
532 if (offset && offset >= size)
534 *MSVCRT__errno() = MSVCRT_EINVAL;
535 return NULL;
538 /* don't align to less than void pointer size */
539 if (alignment < sizeof(void *))
540 alignment = sizeof(void *);
542 /* allocate enough space for void pointer and alignment */
543 temp = MSVCRT_malloc(size + alignment + sizeof(void *));
545 if (!temp)
546 return NULL;
548 /* adjust pointer for proper alignment and offset */
549 memblock = ALIGN_PTR(temp, alignment, offset);
551 /* Save the real allocation address below returned address */
552 /* so it can be found later to free. */
553 saved = SAVED_PTR(memblock);
554 *saved = temp;
556 return memblock;
559 /*********************************************************************
560 * _aligned_malloc (MSVCRT.@)
562 void * CDECL _aligned_malloc(MSVCRT_size_t size, MSVCRT_size_t alignment)
564 TRACE("(%lu, %lu)\n", size, alignment);
565 return _aligned_offset_malloc(size, alignment, 0);
568 /*********************************************************************
569 * _aligned_offset_realloc (MSVCRT.@)
571 void * CDECL _aligned_offset_realloc(void *memblock, MSVCRT_size_t size,
572 MSVCRT_size_t alignment, MSVCRT_size_t offset)
574 void * temp, **saved;
575 MSVCRT_size_t old_padding, new_padding, old_size;
576 TRACE("(%p, %lu, %lu, %lu)\n", memblock, size, alignment, offset);
578 if (!memblock)
579 return _aligned_offset_malloc(size, alignment, offset);
581 /* alignment must be a power of 2 */
582 if ((alignment & (alignment - 1)) != 0)
584 *MSVCRT__errno() = MSVCRT_EINVAL;
585 return NULL;
588 /* offset must be less than size */
589 if (offset >= size)
591 *MSVCRT__errno() = MSVCRT_EINVAL;
592 return NULL;
595 if (size == 0)
597 _aligned_free(memblock);
598 return NULL;
601 /* don't align to less than void pointer size */
602 if (alignment < sizeof(void *))
603 alignment = sizeof(void *);
605 /* make sure alignment and offset didn't change */
606 saved = SAVED_PTR(memblock);
607 if (memblock != ALIGN_PTR(*saved, alignment, offset))
609 *MSVCRT__errno() = MSVCRT_EINVAL;
610 return NULL;
613 old_padding = (char *)memblock - (char *)*saved;
615 /* Get previous size of block */
616 old_size = _msize(*saved);
617 if (old_size == -1)
619 /* It seems this function was called with an invalid pointer. Bail out. */
620 return NULL;
623 /* Adjust old_size to get amount of actual data in old block. */
624 if (old_size < old_padding)
626 /* Shouldn't happen. Something's weird, so bail out. */
627 return NULL;
629 old_size -= old_padding;
631 temp = MSVCRT_realloc(*saved, size + alignment + sizeof(void *));
633 if (!temp)
634 return NULL;
636 /* adjust pointer for proper alignment and offset */
637 memblock = ALIGN_PTR(temp, alignment, offset);
639 /* Save the real allocation address below returned address */
640 /* so it can be found later to free. */
641 saved = SAVED_PTR(memblock);
643 new_padding = (char *)memblock - (char *)temp;
646 Memory layout of old block is as follows:
647 +-------+---------------------+-+--------------------------+-----------+
648 | ... | "old_padding" bytes | | ... "old_size" bytes ... | ... |
649 +-------+---------------------+-+--------------------------+-----------+
650 ^ ^ ^
651 | | |
652 *saved saved memblock
654 Memory layout of new block is as follows:
655 +-------+-----------------------------+-+----------------------+-------+
656 | ... | "new_padding" bytes | | ... "size" bytes ... | ... |
657 +-------+-----------------------------+-+----------------------+-------+
658 ^ ^ ^
659 | | |
660 temp saved memblock
662 However, in the new block, actual data is still written as follows
663 (because it was copied by MSVCRT_realloc):
664 +-------+---------------------+--------------------------------+-------+
665 | ... | "old_padding" bytes | ... "old_size" bytes ... | ... |
666 +-------+---------------------+--------------------------------+-------+
667 ^ ^ ^
668 | | |
669 temp saved memblock
671 Therefore, min(old_size,size) bytes of actual data have to be moved
672 from the offset they were at in the old block (temp + old_padding),
673 to the offset they have to be in the new block (temp + new_padding == memblock).
675 if (new_padding != old_padding)
676 memmove((char *)memblock, (char *)temp + old_padding, (old_size < size) ? old_size : size);
678 *saved = temp;
680 return memblock;
683 /*********************************************************************
684 * _aligned_realloc (MSVCRT.@)
686 void * CDECL _aligned_realloc(void *memblock, MSVCRT_size_t size, MSVCRT_size_t alignment)
688 TRACE("(%p, %lu, %lu)\n", memblock, size, alignment);
689 return _aligned_offset_realloc(memblock, size, alignment, 0);
692 /*********************************************************************
693 * memmove_s (MSVCRT.@)
695 int CDECL MSVCRT_memmove_s(void *dest, MSVCRT_size_t numberOfElements, const void *src, MSVCRT_size_t count)
697 TRACE("(%p %lu %p %lu)\n", dest, numberOfElements, src, count);
699 if(!count)
700 return 0;
702 if (!MSVCRT_CHECK_PMT(dest != NULL)) return MSVCRT_EINVAL;
703 if (!MSVCRT_CHECK_PMT(src != NULL)) return MSVCRT_EINVAL;
704 if (!MSVCRT_CHECK_PMT_ERR( count <= numberOfElements, MSVCRT_ERANGE )) return MSVCRT_ERANGE;
706 memmove(dest, src, count);
707 return 0;
710 /*********************************************************************
711 * wmemmove_s (MSVCR100.@)
713 int CDECL wmemmove_s(MSVCRT_wchar_t *dest, MSVCRT_size_t numberOfElements,
714 const MSVCRT_wchar_t *src, MSVCRT_size_t count)
716 TRACE("(%p %lu %p %lu)\n", dest, numberOfElements, src, count);
718 if (!count)
719 return 0;
721 /* Native does not seem to conform to 6.7.1.2.3 in
722 * http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1225.pdf
723 * in that it does not zero the output buffer on constraint violation.
725 if (!MSVCRT_CHECK_PMT(dest != NULL)) return MSVCRT_EINVAL;
726 if (!MSVCRT_CHECK_PMT(src != NULL)) return MSVCRT_EINVAL;
727 if (!MSVCRT_CHECK_PMT_ERR(count <= numberOfElements, MSVCRT_ERANGE)) return MSVCRT_ERANGE;
729 memmove(dest, src, sizeof(MSVCRT_wchar_t)*count);
730 return 0;
733 /*********************************************************************
734 * memcpy_s (MSVCRT.@)
736 int CDECL MSVCRT_memcpy_s(void *dest, MSVCRT_size_t numberOfElements, const void *src, MSVCRT_size_t count)
738 TRACE("(%p %lu %p %lu)\n", dest, numberOfElements, src, count);
740 if(!count)
741 return 0;
743 if (!MSVCRT_CHECK_PMT(dest != NULL)) return MSVCRT_EINVAL;
744 if (!MSVCRT_CHECK_PMT(src != NULL))
746 memset(dest, 0, numberOfElements);
747 return MSVCRT_EINVAL;
749 if (!MSVCRT_CHECK_PMT_ERR( count <= numberOfElements, MSVCRT_ERANGE ))
751 memset(dest, 0, numberOfElements);
752 return MSVCRT_ERANGE;
755 memcpy(dest, src, count);
756 return 0;
759 /*********************************************************************
760 * wmemcpy_s (MSVCR100.@)
762 int CDECL wmemcpy_s(MSVCRT_wchar_t *dest, MSVCRT_size_t numberOfElements,
763 const MSVCRT_wchar_t *src, MSVCRT_size_t count)
765 TRACE("(%p %lu %p %lu)\n", dest, numberOfElements, src, count);
767 if (!count)
768 return 0;
770 if (!MSVCRT_CHECK_PMT(dest != NULL)) return MSVCRT_EINVAL;
772 if (!MSVCRT_CHECK_PMT(src != NULL)) {
773 memset(dest, 0, numberOfElements*sizeof(MSVCRT_wchar_t));
774 return MSVCRT_EINVAL;
776 if (!MSVCRT_CHECK_PMT_ERR(count <= numberOfElements, MSVCRT_ERANGE)) {
777 memset(dest, 0, numberOfElements*sizeof(MSVCRT_wchar_t));
778 return MSVCRT_ERANGE;
781 memcpy(dest, src, sizeof(MSVCRT_wchar_t)*count);
782 return 0;
785 /*********************************************************************
786 * strncpy_s (MSVCRT.@)
788 int CDECL MSVCRT_strncpy_s(char *dest, MSVCRT_size_t numberOfElements,
789 const char *src, MSVCRT_size_t count)
791 MSVCRT_size_t i, end;
793 TRACE("(%p %lu %s %lu)\n", dest, numberOfElements, debugstr_a(src), count);
795 if(!count) {
796 if(dest && numberOfElements)
797 *dest = 0;
798 return 0;
801 if (!MSVCRT_CHECK_PMT(dest != NULL)) return MSVCRT_EINVAL;
802 if (!MSVCRT_CHECK_PMT(src != NULL)) return MSVCRT_EINVAL;
803 if (!MSVCRT_CHECK_PMT(numberOfElements != 0)) return MSVCRT_EINVAL;
805 if(count!=MSVCRT__TRUNCATE && count<numberOfElements)
806 end = count;
807 else
808 end = numberOfElements-1;
810 for(i=0; i<end && src[i]; i++)
811 dest[i] = src[i];
813 if(!src[i] || end==count || count==MSVCRT__TRUNCATE) {
814 dest[i] = '\0';
815 return 0;
818 MSVCRT_INVALID_PMT("dest[numberOfElements] is too small", MSVCRT_EINVAL);
819 dest[0] = '\0';
820 return MSVCRT_EINVAL;
823 BOOL msvcrt_init_heap(void)
825 heap = HeapCreate(0, 0, 0);
826 return heap != NULL;
829 void msvcrt_destroy_heap(void)
831 HeapDestroy(heap);
832 if(sb_heap)
833 HeapDestroy(sb_heap);