SRC/temp.c File Reference

Go to the source code of this file.

Functions

static const char *const * ReadFixPins (IN const char *const *Args, OUT char **PinFile)

Function Documentation

static const char* const* ReadFixPins ( IN const char *const *  Args,
OUT char **  PinFile 
) [static]

Definition at line 2 of file temp.c.

00004 {
00005     enum e_OptionArgToken Token;
00006     int Len;
00007         const char *const *PrevArgs = Args;
00008 
00009     Args = ReadToken(Args, &Token);
00010     if(OT_RANDOM != Token)
00011         {
00012             Len = 1 + strlen(*PrevArgs);
00013             *PinFile = (char *)my_malloc(Len * sizeof(char));
00014             memcpy(*PinFile, *PrevArgs, Len);
00015         }
00016     return Args;
00017 }

Here is the call graph for this function:


Generated on Tue Jan 5 15:26:38 2010 for VPR5.0 by  doxygen 1.6.1