darling/tools/offsetof
Andrew Hyatt 5f96f6c7fb
Rename tools to remove their file extensions
This makes it easy to add the folder to PATH and run commands
2018-05-17 10:02:35 -04:00

28 lines
317 B
Bash
Executable File

#!/bin/sh
set -e
cfile=/tmp/offsetof.$$.c
include="$1"
struct="$2"
member="$3"
cat > $cfile <<END
#include <stdio.h>
#include <stddef.h>
#include <$include>
int main()
{
printf("offsetof($struct, $member)=%d\n", offsetof($struct, $member));
return 0;
}
END
gcc -w $cfile -o $cfile.bin
$cfile.bin
rm $cfile*