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
| #!/usr/bin/env zsh | |
| # | |
| FILEPATH="$1" | |
| echo $(cd "$(dirname "$FILEPATH")"; pwd)/$(basename $FILEPATH) | |
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
| typedef struct free_list_t { | |
| void (*func)(void *); | |
| void *arg; | |
| struct free_list_t *next; | |
| } FreeList; | |
| void _defer(FreeList **f, void (*func)(void *), void *arg) { | |
| if (arg == NULL) { | |
| return; | |
| } |
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 "alloc.h" | |
| #include "byte.h" | |
| #include "uint32.h" | |
| #include "exit.h" | |
| #include "tai.h" | |
| #include "cache.h" | |
| uint64 cache_motion = 0; | |
| static char *x = 0; |
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
| int add(int a, int b) { | |
| return a + b; | |
| } | |
OlderNewer