函数逻辑报告

Linux Kernel

v5.5.9

Brick Technologies Co., Ltd

Source Code:fs\seq_file.c Create Date:2022-07-29 10:40:07
Last Modify:2020-03-12 14:18:49 Copyright©Brick
首页 函数Tree
注解内核,赢得工具下载SCCTEnglish

函数名称:seq_pad - write padding spaces to buffer*@m: seq_file identifying the buffer to which data should be written*@c: the byte to append after padding if non-zero

函数原型:void seq_pad(struct seq_file *m, char c)

返回类型:void

参数:

类型参数名称
struct seq_file *m
charc
842  size等于pad_untilcount
843  如果size大于0则
844  如果sizecount大于size
846  返回
848  memset(buf + count, ' ', size)
849  count加等于size
851  如果cseq_putc(m, c)