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