1. NAME

seq_write - write arbitrary data to buffer

2. SYNOPSIS

int seq_write(struct seq_file *  seq , const void *  data , size_t  len );

3. ARGUMENTS

seq
    seq_file identifying the buffer to which data should be written

data
    data address

len
    number of bytes

4. DESCRIPTION

Return 0 on success, non-zero otherwise.

5. COPYRIGHT