๐
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 "cten.h" | |
#include <stdbool.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <math.h> | |
#include <string.h> | |
#include <time.h> | |
void* _cten_malloc(size_t size); |
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
#!/bin/sh | |
if command -v xdg-open > /dev/null; then | |
xdg-open https://www.youtube.com/watch?v=dQw4w9WgXcQ | |
elif command -v open > /dev/null; then # macOS | |
open https://www.youtube.com/watch?v=dQw4w9WgXcQ | |
elif command -v start > /dev/null; then # Windows (Git Bash or WSL) | |
start https://www.youtube.com/watch?v=dQw4w9WgXcQ | |
fi |
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
[Telegram] | |
api_id = | |
api_hash = | |
username = |
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
name: Build and Test | |
on: | |
push: | |
branches: [ "main", "ci" ] | |
pull_request: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: |