code:min - ikarishinjieva/unixV6-code-analyze-chs GitHub Wiki
- 返回 a,b 的最小值
- a,b为字节长变量
6335
6336 /* Return the logical minimum
6337 * of the 2 arguments.
6338 */
6339 min(a, b)
6340 char *a, *b;
6341 {
6342
6343 if(a < b)
6344 return(a);
6345 return(b);
6346 }
6347 /* ------------------------- */
6348
6349