code:max - ikarishinjieva/unixV6-code-analyze-chs GitHub Wiki Source 返回 a,b 的最大值 a,b为字节长变量 6322 6323 /* Return the logical maximum 6324 * of the 2 arguments. 6325 */ 6326 max(a, b) 6327 char *a, *b; 6328 { 6329 6330 if(a > b) 6331 return(a); 6332 return(b); 6333 } 6334 /* ------------------------- */ ⚠️ **GitHub.com Fallback** ⚠️