Bez popisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

vector-header.h 210B

12345678910111213
  1. #ifndef __vector_header_h__
  2. #define __vector_header_h__
  3. #define VECTOR_SIZE (100)
  4. typedef struct __vector {
  5. pthread_mutex_t lock;
  6. int values[VECTOR_SIZE];
  7. } vector_t;
  8. #endif // __vector_header_h__