data_structures
|
#include "utils.h"
Go to the source code of this file.
Functions | |
int * | int2ptr (int a) |
Converts int to int* More... | |
char * | char2ptr (char a) |
Converts char to char* More... | |
float * | float2ptr (float a) |
Converts float to float* More... | |
char* char2ptr | ( | char | a | ) |
Converts char
to char*
Definition at line 24 of file data2ptr.c.
float* float2ptr | ( | float | a | ) |
Converts float
to float*
Definition at line 32 of file data2ptr.c.
int* int2ptr | ( | int | a | ) |
Converts int
to int*
Definition at line 16 of file data2ptr.c.