print.c

来自「ATM 网 络 协 议 实 现 源 代 码」· C语言 代码 · 共 38 行

C
38
字号
/* * print.c - library routines for printing ASN.1 values. * * Copyright (C) 1992 Michael Sample and the University of British Columbia * * This library is free software; you can redistribute it and/or * modify it provided that this copyright/license information is retained * in original form. * * If you modify this file, you must clearly indicate your changes. * * This source code 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. * */#if HAVE_CONFIG_H#include <config.h>#endif#include "asn_config.h"#include "print.h"unsigned short int stdIndentG = 4;voidIndent PARAMS((f, i),FILE* f _AND_unsigned short int i){    for( ; i > 0; i--)        fputc(' ', f);  /* this may be slow */}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?