From 617bbe2f143d4c168fcede2c1bc4887e7174e8e4 Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Sat, 13 May 2023 02:39:00 +0100 Subject: [PATCH] Updated README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 160cc9b..d69dd54 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # C Code Generation -Basic attempt at code generation for C. Generates 2D, 3D and 4D vector structs for int, float and double primitive types, as well as functions to print the values of the dimensions of each struct. It also create two macros `VEC(TYPE, COUNT)` which can be used to declare a variable of any of the defined vector types and `PRINT_VEC(TYPE, COUNT)` which can be used to call the respective print function for each vector type. +Basic attempt at code generation for C. Generates 2D, 3D and 4D vector structs for int, float and double primitive types, as well as functions to print the values of the dimensions of each struct. It also creates two macros `VEC(TYPE, COUNT)` which can be used to declare a variable of any of the defined vector types and `PRINT_VEC(TYPE, COUNT)` which can be used to call the respective print function for each vector type. The `main.c` includes examples of using the macros.