Skip to content

Instantly share code, notes, and snippets.

@dheeptuck
Created September 15, 2022 07:34
Show Gist options
  • Save dheeptuck/c7c1389c0421a9ec2c0105dadc9bf3bb to your computer and use it in GitHub Desktop.
Save dheeptuck/c7c1389c0421a9ec2c0105dadc9bf3bb to your computer and use it in GitHub Desktop.
typedef struct BD_t
{
int blkSize;
struct BD_t *prev;
struct BD_t *next;
} BD_t;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment