If you need to pass your array only to the C function, then the easiest way is to pass the pointer argument using the operator and so:
your_c_func(arg1, arg2, &Triggers);
If you need to do something more advanced, you will have to play with UnsafeBufferPointers and friends.
Here are some links to get you started with this:
Apple Swift Blog
Swift Russ Bishop