-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrderList.h
25 lines (23 loc) · 1.05 KB
/
OrderList.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include<stdio.h>
#include<conio.h>
#include<string.h>
#define N 20
/*--------------------------------------------------------------------------------------*/
typedef struct order
{
char items[N*2];
char agentAlloted[N];
char customerName[N];
struct order * next ;
}ORDER;
/*--------------------------------------------------------------------------------------*/
void insert(ORDER *O1,char items[N*2])
{
}
/*--------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------*/