Created
September 15, 2022 07:34
-
-
Save dheeptuck/c7c1389c0421a9ec2c0105dadc9bf3bb to your computer and use it in GitHub Desktop.
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 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