tico
0.1
Mechanical Watch Terminal Timegrapher
inc
myarr.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <stddef.h>
4
13
struct
myarr
14
{
15
int
*
arr
;
16
double
*
arrd
;
17
size_t
ArrayLength
;
18
};
19
23
void
freemyarr
(
struct
myarr
* arr);
24
30
struct
myarr
*
makemyarr
(
size_t
ArrayLength
);
31
36
struct
myarr
*
makemyarrd
(
size_t
ArrayLength
);
37
freemyarr
void freemyarr(struct myarr *arr)
@ struct.
Definition:
myarr.c:6
makemyarr
struct myarr * makemyarr(size_t ArrayLength)
@ the specified length.
Definition:
myarr.c:34
makemyarrd
struct myarr * makemyarrd(size_t ArrayLength)
@ specified length.
Definition:
myarr.c:16
myarr
A struct to hold an array of integers or an array of doubles, along with the length of the arrays.
Definition:
myarr.h:14
myarr::arrd
double * arrd
Definition:
myarr.h:16
myarr::ArrayLength
size_t ArrayLength
Definition:
myarr.h:17
myarr::arr
int * arr
Definition:
myarr.h:15
Generated by
1.9.4