- 实词:名词、动词、形容词、状态词、区别词、数词、量词、代词
- 虚词:副词、介词、连词、助词、拟声词、叹词。
n 名词
nr 人名
| #!/bin/bash | |
| # Baidu Yun Command Line Interface | |
| # Depends: bash, curl, grep, awk, sed, od | |
| # (They are basicly builtin tools of any *nix system.) | |
| # Additionally, fastupload depends: head, wc, md5sum or md5, cksum | |
| # (Which are also builtin tools) | |
| #### Variables #### |
| int clamp(int val) { | |
| if (val < 0) return 0; | |
| if (val > 255) return 255; | |
| return val; | |
| } | |
| unsigned char layerMerge(unsigned char **layers, unsigned int layerCount, unsigned int layerWidth, unsigned int layerHeight) { | |
| if (1 >= layerCount) return 0; | |
| unsigned char isNewLayer = 0; | |
| unsigned int i, j, byteCount; |