Linux内核中的printf实现

Stella981
• 阅读 662
1 #ifndef     __PRINT_H_
 2 #define    __PRINT_H_
 3 
 4 void    print(char* fmt, ...);
 5 void    printch(char ch);
 6 void    printdec(int dec);
 7 void    printflt(double flt);
 8 void    printbin(int bin);
 9 void    printhex(int hex);
10 void    printstr(char* str);
11 
12 #define console_print(ch)    putchar(ch)
13 
14 #endif    /*#ifndef __PRINT_H_*/

#include <stdio.h>
  2 #include <stdarg.h>
  3 #include "print.h"
  4 
  5 int main(void)
  6 {
  7     print("print: %c\n", 'c');
  8     print("print %d\n", 1234567);
  9     print("print: %f\n", 1234567.1234567);
 10     print("print: %s\n", "string test");
 11     print("print: %b\n", 0x12345ff);
 12     print("print: %x\n", 0xabcdef);
 13     print("print: %%\n");
 14     return 0;
 15 }
 16 
 17 void    print(char* fmt, ...)
 18 {
 19     double vargflt = 0;
 20     int  vargint = 0;
 21     char* vargpch = NULL;
 22     char vargch = 0;
 23     char* pfmt = NULL;
 24     va_list vp;
 25 
 26     va_start(vp, fmt);
 27     pfmt = fmt;
 28 
 29     while(*pfmt)
 30     {
 31         if(*pfmt == '%')
 32         {
 33             switch(*(++pfmt))
 34             {
 35                 
 36                 case 'c':
 37                     vargch = va_arg(vp, int); 
 38                     /*    va_arg(ap, type), if type is narrow type (char, short, float) an error is given in strict ANSI
 39                         mode, or a warning otherwise.In non-strict ANSI mode, 'type' is allowed to be any expression. */
 40                     printch(vargch);
 41                     break;
 42                 case 'd':
 43                 case 'i':
 44                     vargint = va_arg(vp, int);
 45                     printdec(vargint);
 46                     break;
 47                 case 'f':
 48                     vargflt = va_arg(vp, double);
 49                     /*    va_arg(ap, type), if type is narrow type (char, short, float) an error is given in strict ANSI
 50                         mode, or a warning otherwise.In non-strict ANSI mode, 'type' is allowed to be any expression. */
 51                     printflt(vargflt);
 52                     break;
 53                 case 's':
 54                     vargpch = va_arg(vp, char*);
 55                     printstr(vargpch);
 56                     break;
 57                 case 'b':
 58                 case 'B':
 59                     vargint = va_arg(vp, int);
 60                     printbin(vargint);
 61                     break;
 62                 case 'x':
 63                 case 'X':
 64                     vargint = va_arg(vp, int);
 65                     printhex(vargint);
 66                     break;
 67                 case '%':
 68                     printch('%');
 69                     break;
 70                 default:
 71                     break;
 72             }
 73             pfmt++;
 74         }
 75         else
 76         {
 77             printch(*pfmt++);
 78         }
 79     }
 80     va_end(vp);
 81 }
 82 
 83 void    printch(char ch)
 84 {
 85     console_print(ch);
 86 }
 87 
 88 void    printdec(int dec)
 89 {
 90     if(dec==0)
 91     {
 92         return;
 93     }
 94     printdec(dec/10);
 95     printch( (char)(dec%10 + '0'));
 96 }
 97 
 98 void    printflt(double flt)
 99 {
100     int icnt = 0;
101     int tmpint = 0;
102     
103     tmpint = (int)flt;
104     printdec(tmpint);
105     printch('.');
106     flt = flt - tmpint;
107     tmpint = (int)(flt * 1000000);
108     printdec(tmpint);
109 }
110 
111 void    printstr(char* str)
112 {
113     while(*str)
114     {
115         printch(*str++);
116     }
117 }
118 
119 void    printbin(int bin)
120 {
121     if(bin == 0)
122     {
123         printstr("0b");
124         return;
125     }
126     printbin(bin/2);
127     printch( (char)(bin%2 + '0'));
128 }
129 
130 void    printhex(int hex)
131 {
132     if(hex==0)
133     {
134         printstr("0x");
135         return;
136     }
137     printhex(hex/16);
138     if(hex < 10)
139     {
140         printch((char)(hex%16 + '0'));
141     }
142     else
143     {
144         printch((char)(hex%16 - 10 + 'a' ));
145     }
146 }
点赞
收藏
评论区
推荐文章
blmius blmius
3年前
MySQL:[Err] 1292 - Incorrect datetime value: ‘0000-00-00 00:00:00‘ for column ‘CREATE_TIME‘ at row 1
文章目录问题用navicat导入数据时,报错:原因这是因为当前的MySQL不支持datetime为0的情况。解决修改sql\mode:sql\mode:SQLMode定义了MySQL应支持的SQL语法、数据校验等,这样可以更容易地在不同的环境中使用MySQL。全局s
皕杰报表之UUID
​在我们用皕杰报表工具设计填报报表时,如何在新增行里自动增加id呢?能新增整数排序id吗?目前可以在新增行里自动增加id,但只能用uuid函数增加UUID编码,不能新增整数排序id。uuid函数说明:获取一个UUID,可以在填报表中用来创建数据ID语法:uuid()或uuid(sep)参数说明:sep布尔值,生成的uuid中是否包含分隔符'',缺省为
待兔 待兔
3个月前
手写Java HashMap源码
HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程HashMap的使用教程22
Jacquelyn38 Jacquelyn38
3年前
2020年前端实用代码段,为你的工作保驾护航
有空的时候,自己总结了几个代码段,在开发中也经常使用,谢谢。1、使用解构获取json数据let jsonData  id: 1,status: "OK",data: 'a', 'b';let  id, status, data: number   jsonData;console.log(id, status, number )
Wesley13 Wesley13
3年前
mysql设置时区
mysql设置时区mysql\_query("SETtime\_zone'8:00'")ordie('时区设置失败,请联系管理员!');中国在东8区所以加8方法二:selectcount(user\_id)asdevice,CONVERT\_TZ(FROM\_UNIXTIME(reg\_time),'08:00','0
Wesley13 Wesley13
3年前
00:Java简单了解
浅谈Java之概述Java是SUN(StanfordUniversityNetwork),斯坦福大学网络公司)1995年推出的一门高级编程语言。Java是一种面向Internet的编程语言。随着Java技术在web方面的不断成熟,已经成为Web应用程序的首选开发语言。Java是简单易学,完全面向对象,安全可靠,与平台无关的编程语言。
Stella981 Stella981
3年前
Django中Admin中的一些参数配置
设置在列表中显示的字段,id为django模型默认的主键list_display('id','name','sex','profession','email','qq','phone','status','create_time')设置在列表可编辑字段list_editable
Wesley13 Wesley13
3年前
ES6 新增的数组的方法
给定一个数组letlist\//wu:武力zhi:智力{id:1,name:'张飞',wu:97,zhi:10},{id:2,name:'诸葛亮',wu:55,zhi:99},{id:3,name:'赵云',wu:97,zhi:66},{id:4,na
Wesley13 Wesley13
3年前
MySQL部分从库上面因为大量的临时表tmp_table造成慢查询
背景描述Time:20190124T00:08:14.70572408:00User@Host:@Id:Schema:sentrymetaLast_errno:0Killed:0Query_time:0.315758Lock_
Python进阶者 Python进阶者
9个月前
Excel中这日期老是出来00:00:00,怎么用Pandas把这个去除
大家好,我是皮皮。一、前言前几天在Python白银交流群【上海新年人】问了一个Pandas数据筛选的问题。问题如下:这日期老是出来00:00:00,怎么把这个去除。二、实现过程后来【论草莓如何成为冻干莓】给了一个思路和代码如下:pd.toexcel之前把这