NeoMutt  2025-12-11-58-g09398d
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
serial.h File Reference

Dump the details of an Expando Tree. More...

+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void expando_serialise (const struct Expando *exp, struct Buffer *buf)
 

Detailed Description

Dump the details of an Expando Tree.

Authors
  • Richard Russon

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file serial.h.

Function Documentation

◆ expando_serialise()

void expando_serialise ( const struct Expando * exp,
struct Buffer * buf )

Definition at line 276 of file serial.c.

277{
278 if (!exp || !buf)
279 return;
280
281 dump_node(exp->node, buf);
282}
static void dump_node(const struct ExpandoNode *node, struct Buffer *buf)
Definition serial.c:240
struct ExpandoNode * node
Parsed tree.
Definition expando.h:43
+ Here is the call graph for this function: