Implement pointers
This commit is contained in:
@ -36,6 +36,10 @@ namespace gcc
|
||||
{
|
||||
return "String";
|
||||
}
|
||||
else if (is_pointer_type(type))
|
||||
{
|
||||
return "pointer";
|
||||
}
|
||||
else if (is_array_type(type))
|
||||
{
|
||||
return "array";
|
||||
|
Reference in New Issue
Block a user