commit f12dce9d387e995e4a3de65c857e767c898e06bb
parent 0028dfb0532f57aeff05105b6854e4fa0854cd92
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Mon, 12 Jan 2026 19:36:54 +0530
[2026-01-12] : .\{root} : added a preserved folder for git upload
Diffstat:
3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/Semester_1/tuition-c/P065.c b/Semester_1/tuition-c/P065.c
@@ -36,7 +36,7 @@ void str_rev(char str[])
int i, j;
char temp;
i = 0;
- j = strlen(str) - 1;
+ j = strlen(str) - 1; // not taking the null
while (i < j)
{
temp = str[i];
diff --git a/deploy_pipeline.py b/deploy_pipeline.py
@@ -20,7 +20,8 @@ ARANAG_PRESERVE = [
"README.md",
"sitemap.xml",
".firebase",
- ".git"
+ ".git",
+ "esal"
]
def remove_readonly(func, path, exc_info):
diff --git a/docs/index.html b/docs/index.html
@@ -18500,7 +18500,7 @@ void str_rev(char str[])
int i, j;
char temp;
i = 0;
- j = strlen(str) - 1;
+ j = strlen(str) - 1; // not taking the null
while (i < j)
{
temp = str[i];