0

だから私はファイルを読みたいのですが、私は4つの機能を持っている必要があります:それは主な機能です

/* Queue functions */

/* Basic type for the queue data structure */
typedef struct queue {
  node *front;          /* Front of the line */
  node *rear;   

    /* Back of the line */
} queue;

申し訳ありませんが、間違ってコンパイルしました。現在は機能しています。

4

1 に答える 1

1

str2cardcard2strプロトタイプと実際の機能が異なります。それらは同じでなければなりません。おそらく他のものと同じです。

ここにプロトタイプがあります:

// Utility functions
node_data str2card(char *buf);
char *card2str(node_data c, char *buf);

以降の機能:

/* Convert a string like 14D into a card */
card str2card(char *buf){
...
}
...
/* Given a card c, put a string like 14D in buf representing it.  Good
for printing  */
char *card2str(card c, char *buf){
...
}
于 2012-11-07T23:52:55.527 に答える