だから私はファイルを読みたいのですが、私は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;
申し訳ありませんが、間違ってコンパイルしました。現在は機能しています。