summaryrefslogtreecommitdiff
path: root/foo.h
blob: d6bb028b58b195a224557460ca887f292aa28824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
int usbprintf(USBSerial& usbs, const char* format, ...) {
	int32_t* argp = (int32_t*)&format;
	int num;
	
	while(*format) {
		if(*format != '%') {
			usbs.putc(*format++);
			num++;
			continue;
		}
		format++;
		
		bool is_signed = false;
		bool zero_pad = false;
		int radix = 16;
		int min_len = 0;
		
		if(*format == '0') {
			zero_pad = true;
		}
		
		while(*format >= '0' && *format <= '9') {
			min_len = min_len * 10 + *format++ - '0';
		}
		
		switch(*format++) {
			case '%':
				usbs.putc('%');
				num++;
				break;
			
			case 'c':
				usbs.putc((char)*++argp);
				num++;
				break;
			
			case 's': {
				char* str = (char*)*++argp;
				while(*str) {
					usbs.putc(*str++);
					num++;
				}
			} break;
			
			case 'd':
				is_signed = true;
			case 'u':
				radix = 10;
			case 'x':
				;
				uint32_t x = (uint32_t)*(++argp);
				if(is_signed && (int32_t)x < 0) {
					x = -x;
					usbs.putc('-');
					min_len--;
				}
				
				char buf[11];
				char* bufp = &buf[sizeof(buf)];
				*--bufp = 0;
				
				do {
					int d = x % radix;
					*--bufp = d < 10 ? '0' + d : 'a' - 10 + d;
					x /= radix;
					min_len--;
				} while(x);
				
				while(min_len > 0) {
					usbs.putc(zero_pad ? '0' : ' ');
					num++;
					min_len--;
				}
				
				while(*bufp) {
					usbs.putc(*bufp++);
					num++;
				}
				break;
		}
	}
	
	return num;
}