Skip to content

Instantly share code, notes, and snippets.

View delor's full-sized avatar
🏠
Working from home

Bartłomiej Piech delor

🏠
Working from home
View GitHub Profile
/**
* @file palindrome.c
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdbool.h>
#include <cs50.h>
bool isPalindrome(char* text);