代码搜索:parse

找到约 10,000 项符合「parse」的源代码

代码结果 10,000
www.eeworm.com/read/216502/4890993

c parse.c

#include "awk.def" #include "awk.h" #include "stdio.h" node *ALLOC(n) { node *x; x = (node *)malloc(sizeof(node)+n*sizeof(node *)); if (x == NULL) error(FATAL, "out of space in ALLOC"); return(x)
www.eeworm.com/read/215090/4906696

py parse.py

#!/usr/bin/env python import re import string import sys class Rule: def __init__(self): self.patterns = [] self.replacements = [] self.head = '' self.foot = '
www.eeworm.com/read/213849/4911125

h parse.h

/* * libid3tag - ID3 tag manipulation library * Copyright (C) 2000-2004 Underbit Technologies, Inc. * * This program is free software; you can redistribute it and/or modify * it under the te
www.eeworm.com/read/213849/4911154

c parse.c

/* * libid3tag - ID3 tag manipulation library * Copyright (C) 2000-2004 Underbit Technologies, Inc. * * This program is free software; you can redistribute it and/or modify * it under the te
www.eeworm.com/read/209559/4974494

y parse.y

/* C global declaration parser for genksyms. Copyright 1996, 1997 Linux International. New implementation contributed by Richard Henderson Based on original work by Bjorn Ekwa
www.eeworm.com/read/209211/4981513

c parse.c

/**************************************************************** Copyright (C) Lucent Technologies 1997 All Rights Reserved Permission to use, copy, modify, and distribute this software and its docu
www.eeworm.com/read/209211/4982976

c parse.c

#include "u.h" #include "lib.h" #include "dat.h" #include "fns.h" #include "error.h" /* * Generous estimate of number of fields, including terminal nil pointer */ static int ncmdfield(char *p, int
www.eeworm.com/read/209211/4983105

c parse.c

#include #include #include #include #include #include #include "wiki.h" static Wpage* mkwtxt(int type, char *text) { Wpage *w; w = emalloc(si
www.eeworm.com/read/209211/4983340

c parse.c

#include "mk.h" char *infile; int mkinline; static int rhead(char *, Word **, Word **, int *, char **); static char *rbody(Biobuf*); extern Word *target1; void parse(char *f, int fd, int varoverride
www.eeworm.com/read/209211/4983385

h parse.h

typedef struct Addr Addr; typedef struct Cmd Cmd; struct Addr { char type; /* # (char addr), l (line addr), / ? . $ + - , ; */ union{ String *re; Addr *aleft; /* left side of , and ; */ } g;