Dear Eryka,
Each base pair site is a locus. But I think what you would like to know is how many polymorphic (variable) loci that you have. I believe the STRUCTURE output contains this information. If not, you could import your data into R, and get the answer there. Something like this:
##not tested, may have bugs
##set working directory!
install.packages("ape")
library(ape)
#have your data in the working directory in FASTA format, and replace "your_filename.fas" below with the name of your file
x <- read.dna("your_filename.fas", as.character = T)
d3 <- apply(x,2,function(d{
d1 <- d[which(!
is.na(d))]
d2 <- table(d1)
length(summary(d2)) > 1
})
#this is the answer:
length(which(d3 == TRUE))