12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- /*
- * This file is part of the UCB release of Plan 9. It is subject to the license
- * terms in the LICENSE file found in the top-level directory of this
- * distribution and at http://akaros.cs.berkeley.edu/files/Plan9License. No
- * part of the UCB release of Plan 9, including this file, may be copied,
- * modified, propagated, or distributed except according to the terms contained
- * in the LICENSE file.
- */
- #include <u.h>
- #include <libc.h>
- #include <venti.h>
- int
- vtparsescore(char *s, char **prefix, uint8_t score[VtScoreSize])
- {
- int i, c;
- char *buf, *colon;
- if((colon = strchr(s, ':')) != nil)
- buf = colon+1;
- else
- buf = s;
- if(strlen(buf) != 2*VtScoreSize)
- return -1;
- memset(score, 0, VtScoreSize);
- for(i=0; i<2*VtScoreSize; i++){
- if(buf[i] >= '0' && buf[i] <= '9')
- c = buf[i] - '0';
- else if(buf[i] >= 'a' && buf[i] <= 'z')
- c = buf[i] - 'a' + 10;
- else if(buf[i] >= 'A' && buf[i] <= 'Z')
- c = buf[i] - 'A' + 10;
- else
- return -1;
- if((i & 1) == 0)
- c <<= 4;
- score[i>>1] |= c;
- }
- if(colon){
- *colon = 0;
- if(prefix)
- *prefix = s;
- }else{
- if(prefix)
- *prefix = nil;
- }
- return 0;
- }
|