This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
extern void ft_bzero(void *s, size_t n); | |
extern unsigned ft_strlen(const char *str); | |
extern char *ft_strcat(char *restrict s1, const char *restrict s2); | |
extern int ft_isalpha(int c); | |
extern int ft_isdigit(int c); | |
extern int ft_isalnum(int c); | |
extern int ft_toupper(int c); | |
extern int ft_tolower(int c); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ln -s /Applications/Atom.app/Contents/Resources/app/atom.sh /usr/local/bin/atom |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<head> | |
<!-- nav bar --> | |
<title>Portfolio</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" type="text/css" href="index.css"> | |
<link rel="stylesheet" type="text/css" href="foundation.min.css"> | |
<script type="text/javascript" src="jquery.js"></script> | |
<script type="text/javascript" src="foundation.min.js"></script> | |
<script type="text/javascript" src="portfolio.js"></script> | |
</head> |