发布时间:2019-08-01 15:22:41
1. nil : https://studygolang.com/articles/115352. keywords and identifiers in GO : https://go101.org/article/keywords-and-identifiers.html3. Unicode Standard 8.0 : http://www.unicode.org/versions/Unicode8.0.0/4. working files go: https://www.devdungeon.com/content/working-files-go#write_bytes or .........【阅读全文】
发布时间:2019-07-25 18:36:11
License: LGPL Mozilla GPL BSD MIT Apache......【阅读全文】
发布时间:2019-06-18 13:08:39
kernel/include$ vim linux/kdev_t.h#define MINORBITS 20#define MINORMASK ((1U << MINORBITS) - 1)#define MAJOR(dev) ((unsigned int) ((dev) >> MINORBITS)) #define MINOR(dev) ((unsigned int) ((dev) & MINORMASK))#define MKDEV(ma,mi) (((ma) << M.........【阅读全文】