The R Project SVN R

Rev

Rev 87538 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 87538 Rev 89942
Line 1... Line 1...
1
/*
1
/*
2
 *  R : A Computer Language for Statistical Data Analysis
2
 *  R : A Computer Language for Statistical Data Analysis
3
 *  Copyright (C) 1999-2025 The R Core Team.
3
 *  Copyright (C) 1999-2026 The R Core Team.
4
 *
4
 *
5
 *  This header file is free software; you can redistribute it and/or modify
5
 *  This header file is free software; you can redistribute it and/or modify
6
 *  it under the terms of the GNU Lesser General Public License as published by
6
 *  it under the terms of the GNU Lesser General Public License as published by
7
 *  the Free Software Foundation; either version 2.1 of the License, or
7
 *  the Free Software Foundation; either version 2.1 of the License, or
8
 *  (at your option) any later version.
8
 *  (at your option) any later version.
Line 42... Line 42...
42
extern "C" {
42
extern "C" {
43
#endif
43
#endif
44
 
44
 
45
/* S Like Memory Management */
45
/* S Like Memory Management */
46
 
46
 
47
/* not of themselves API */
47
/* experimental API */
48
extern void *R_chk_calloc(R_SIZE_T, R_SIZE_T);
48
extern void *R_chk_calloc(R_SIZE_T, R_SIZE_T);
49
extern void *R_chk_realloc(void *, R_SIZE_T);
49
extern void *R_chk_realloc(void *, R_SIZE_T);
50
extern void R_chk_free(void *);
50
extern void R_chk_free(void *);
51
extern void *R_chk_memcpy(void *, const void *, R_SIZE_T);
51
extern void *R_chk_memcpy(void *, const void *, R_SIZE_T);
52
extern void *R_chk_memset(void *, int, R_SIZE_T);
52
extern void *R_chk_memset(void *, int, R_SIZE_T);